You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return`These jobs have completed in the previous ${this.cutoffMin} minutes.`;
184
184
},
185
185
runningTableCaption() {
186
-
return`These jobs are unfinished and have had their state updated in the previous ${this.cutoffMin} minutes. For currently running jobs, the "Last Update" column should indicate the runtime so far.`;
186
+
let message =`These jobs are unfinished`;
187
+
if (!this.showAllRunning) {
188
+
message +=` and have had their state updated in the previous ${this.cutoffMin} minutes`;
189
+
}
190
+
message +=`. For currently running jobs, the "Last Update" column should indicate the runtime so far.`;
191
+
return message;
187
192
},
188
193
finishedNoJobsMessage() {
189
194
return`There are no recently finished jobs to show with current cutoff time of ${this.cutoffMin} minutes.`;
0 commit comments