Reinit chosen on log filters after updating them

This commit is contained in:
Isaac Connor 2020-09-16 09:58:15 -04:00
parent 4fa9237048
commit c1f872c9aa
1 changed files with 2 additions and 0 deletions

View File

@ -294,6 +294,8 @@ function updateFilterSelectors() {
if ( filter[key] ) { if ( filter[key] ) {
selector.set('value', filter[key]); selector.set('value', filter[key]);
} }
$j(selector).chosen('destroy');
$j(selector).chosen();
} }
); );
} }