Thread Starter
toates
(@toates)
I got it figured out. In case anyone else needs this info. The below filter sets the preserve_search value to true so the entered search parameter is preserved when switching tab/collections.
add_filter( 'cm_typesense_additional_config', function( $config ) {
$config['preserve_search'] = true;
return $config;
} );
-
This reply was modified 7 months ago by toates.