File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -485,12 +485,12 @@ function startProcess() {
485485 } ) ;
486486
487487 ConfigStorage . get ( 'permanentExpertMode' , function ( result ) {
488- const experModeCheckbox = 'input[name="expertModeCheckbox"]' ;
488+ const expertModeCheckbox = 'input[name="expertModeCheckbox"]' ;
489489 if ( result . permanentExpertMode ) {
490- $ ( experModeCheckbox ) . prop ( 'checked' , true ) ;
490+ $ ( expertModeCheckbox ) . prop ( 'checked' , true ) ;
491491 }
492492
493- $ ( experModeCheckbox ) . change ( function ( ) {
493+ $ ( expertModeCheckbox ) . change ( function ( ) {
494494 const checked = $ ( this ) . is ( ':checked' ) ;
495495 checkSetupAnalytics ( function ( analyticsService ) {
496496 analyticsService . setDimension ( analyticsService . DIMENSIONS . CONFIGURATOR_EXPERT_MODE , checked ? 'On' : 'Off' ) ;
Original file line number Diff line number Diff line change @@ -375,7 +375,7 @@ TABS.firmware_flasher.initialize = function (callback) {
375375 function showOrHideBuildTypeSelect ( ) {
376376 var expertModeChecked = $ ( this ) . is ( ':checked' ) ;
377377
378- globalExpertMode_e . prop ( 'checked' , expertModeChecked ) ;
378+ globalExpertMode_e . prop ( 'checked' , expertModeChecked ) . trigger ( 'change' ) ;
379379 if ( expertModeChecked ) {
380380 buildTypesToShow = buildTypes . concat ( ciBuildsTypes ) ;
381381 buildBuildTypeOptionsList ( ) ;
You can’t perform that action at this time.
0 commit comments