Skip to content

Commit b480dfa

Browse files
authored
Update restart-all-button.mjs (#198)
1 parent 5b75624 commit b480dfa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

web/static/pages/pipeline_porep/restart-all-button.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class RestartAllButton extends LitElement {
1919
class="btn ${this.isProcessing ? 'btn-secondary' : 'btn-primary'}"
2020
?disabled="${this.isProcessing}"
2121
>
22-
${this.isProcessing ? 'Processing...' : 'Restart All'}
22+
${this.isProcessing ? 'Processing...' : 'Resume All'}
2323
</button>
2424
`;
2525
}
@@ -28,9 +28,9 @@ class RestartAllButton extends LitElement {
2828
this.isProcessing = true;
2929
try {
3030
await RPCCall('PipelinePorepRestartAll', []);
31-
console.log('Restart All operation completed successfully');
31+
console.log('Resume All operation completed successfully');
3232
} catch (error) {
33-
console.error('Error during Restart All operation:', error);
33+
console.error('Error during Resume All operation:', error);
3434
} finally {
3535
this.isProcessing = false;
3636
}

0 commit comments

Comments
 (0)