Skip to content

Commit f01f808

Browse files
committed
Update status message in usage.component.ts
1 parent 586ff36 commit f01f808

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/app/components/usage/usage.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,13 @@ <h1 class="mat-headline-2" style="user-select: none; font-weight: 800; text-alig
9898
href="https://docs.github.com/en/billing/managing-billing-for-github-actions/viewing-your-github-actions-usage">GitHub
9999
Usage Report</a>.<br> <i>All processing is done client side and your usage report never leaves your
100100
computer.</i></p>
101-
<p>To get started go get your usage report and then select it by clicking "Choose File" above.</p>
101+
<p>To get started go get your usage report and then select it by clicking "Usage Report" above.</p>
102102
<button mat-raised-button color="accent" (click)="navigateToBilling()" style="margin-top: 40px;">
103103
<mat-icon svgIcon="github"></mat-icon>
104104
Download your GitHub usage report
105105
</button>
106106
<a href="https://github.com/austenstone/github-actions-usage-report" target="_blank">
107-
<button mat-raised-button color="accent" style="margin-top: 40px;">
107+
<button mat-button color="accent" style="margin-top: 40px;">
108108
<mat-icon>code</mat-icon>
109109
Source Code
110110
</button>

src/app/components/usage/usage.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export class UsageComponent implements OnInit, OnDestroy {
2929
workflow!: string;
3030
_filteredWorkflows!: Observable<string[]>;
3131
workflowControl = new FormControl('');
32-
status: string = 'Choose File';
32+
status: string = 'Usage Report';
3333
progress: number | null = null;
3434
subscriptions: Subscription[] = [];
3535
currency: 'minutes' | 'cost' = 'cost';
@@ -113,7 +113,7 @@ export class UsageComponent implements OnInit, OnDestroy {
113113
this.maxDate.setHours(0, 0, 0, 0);
114114
this.range.controls.start.setValue(this.minDate, { emitEvent: false });
115115
this.range.controls.end.setValue(this.maxDate, { emitEvent: false });
116-
this.status = 'Choose File';
116+
this.status = 'Usage Report';
117117
this.progress = null;
118118
this.usage = usage;
119119
this.cdr.detectChanges();

0 commit comments

Comments
 (0)