Skip to content

Commit

Permalink
Update loading status message in usage component
Browse files Browse the repository at this point in the history
  • Loading branch information
austenstone committed Jan 24, 2024
1 parent ec2758f commit 0000adc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/usage/usage.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export class UsageComponent {
}, 0)
});
}).then(async (usage) => {
this.status = 'Loading...';
this.status = 'Loading... Be patient, this may take a while.';
this.cdr.detectChanges();
return new Promise<UsageReport>((resolve) => setTimeout(() => resolve(usage), 100));
});
Expand Down

0 comments on commit 0000adc

Please sign in to comment.