File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
web/static/pages/pipeline_porep Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ class RestartAllButton extends LitElement {
19
19
class ="btn ${ this . isProcessing ? 'btn-secondary' : 'btn-primary' } "
20
20
?disabled ="${ this . isProcessing } "
21
21
>
22
- ${ this . isProcessing ? 'Processing...' : 'Restart All' }
22
+ ${ this . isProcessing ? 'Processing...' : 'Resume All' }
23
23
</ button >
24
24
` ;
25
25
}
@@ -28,9 +28,9 @@ class RestartAllButton extends LitElement {
28
28
this . isProcessing = true ;
29
29
try {
30
30
await RPCCall ( 'PipelinePorepRestartAll' , [ ] ) ;
31
- console . log ( 'Restart All operation completed successfully' ) ;
31
+ console . log ( 'Resume All operation completed successfully' ) ;
32
32
} catch ( error ) {
33
- console . error ( 'Error during Restart All operation:' , error ) ;
33
+ console . error ( 'Error during Resume All operation:' , error ) ;
34
34
} finally {
35
35
this . isProcessing = false ;
36
36
}
You can’t perform that action at this time.
0 commit comments