Skip to content

Commit

Permalink
Use Queued status for waiting message
Browse files Browse the repository at this point in the history
  • Loading branch information
ericnewcomer committed Sep 25, 2024
1 parent 0a4753f commit bbf9684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/progress/StartProgress.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export class StartProgress extends RapidElement {
start.status == 'Interrupted' ||
start.progress.current >= start.progress.total;

if (start.status === 'queued') {
if (start.status === 'Queued') {
this.message = 'Waiting..';
} else {
this.message = null;
Expand Down

0 comments on commit bbf9684

Please sign in to comment.