File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -382,11 +382,13 @@ TABS.pid_tuning.initialize = function (callback) {
382382
383383 // Dynamic Notch Filter
384384 if ( semver . lt ( FC . CONFIG . apiVersion , API_VERSION_1_44 ) ) {
385- $ ( '.dynamicNotch span.inputSwitch' ) . hide ( ) ;
386- if ( ! FC . FEATURE_CONFIG . features . isEnabled ( 'DYNAMIC_FILTER' ) ) {
385+ if ( FC . FEATURE_CONFIG . features . isEnabled ( 'DYNAMIC_FILTER' ) ) {
386+ $ ( '.dynamicNotch span.inputSwitch' ) . hide ( ) ;
387+ } else {
387388 $ ( '.dynamicNotch' ) . hide ( ) ;
388389 }
389390 }
391+
390392 const dynamicNotchRange_e = $ ( '.pid_filter select[name="dynamicNotchRange"]' ) ;
391393 const dynamicNotchWidthPercent_e = $ ( '.pid_filter input[name="dynamicNotchWidthPercent"]' ) ;
392394 const dynamicNotchCount_e = $ ( '.pid_filter input[name="dynamicNotchCount"]' ) ;
You can’t perform that action at this time.
0 commit comments