@@ -70,7 +70,6 @@ const buildPage = (model, cruMapByHost) => {
70
70
h ( 'h4.pv2.w-20' , 'CRUs by detector:' ) ,
71
71
savingConfigurationMessagePanel ( model ) ,
72
72
h ( '.btn-group.w-20' , { style : 'justify-content: flex-end;' } , [
73
- saveConfigurationButton ( model ) ,
74
73
runRocConfigButton ( model )
75
74
] )
76
75
] ) ,
@@ -396,17 +395,6 @@ const savingConfigurationMessagePanel = (model) =>
396
395
} )
397
396
) ;
398
397
399
- /**
400
- * Button to save the updated configuration
401
- * @param {Object } model
402
- * @return {vnode }
403
- */
404
- const saveConfigurationButton = ( model ) =>
405
- h ( 'button.btn.btn-default' , {
406
- onclick : ( ) => model . configuration . saveConfiguration ( ) ,
407
- disabled : model . configuration . configurationRequest . isLoading ( ) ,
408
- } , model . configuration . configurationRequest . isLoading ( ) ? loading ( 1.5 ) : 'Save' ) ;
409
-
410
398
/**
411
399
* Button to save the updated configuration
412
400
* @param {Object } model
@@ -422,4 +410,4 @@ Are you sure you would like to continue?`)
422
410
} ,
423
411
disabled : model . configuration . configurationRequest . isLoading ( )
424
412
|| ( model . workflow . model . detectors . isSingleView ( ) && ! model . lock . isLockedByCurrentUser ( model . detectors . selected ) ) ,
425
- } , model . configuration . configurationRequest . isLoading ( ) ? loading ( 1.5 ) : 'Save & Configure' ) ;
413
+ } , model . configuration . configurationRequest . isLoading ( ) ? loading ( 1.5 ) : 'Configure' ) ;
0 commit comments