Spaces:
Sleeping
Sleeping
Update src/app/components/body/leaderboards/leaderboard/leaderboard.component.html
Browse files
src/app/components/body/leaderboards/leaderboard/leaderboard.component.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
<mat-card>
|
2 |
<button mat-raised-button color="primary" (click)="refresh()">Refresh Leaderboard</button>
|
3 |
<table mat-table [dataSource]="dataSource" matSort>
|
4 |
|
@@ -64,3 +64,7 @@
|
|
64 |
<mat-row *matRowDef="let row; columns: displayedColumns"></mat-row>
|
65 |
</table>
|
66 |
</mat-card>
|
|
|
|
|
|
|
|
|
|
1 |
+
<mat-card *ngIf="task != 'Summary Generation'">
|
2 |
<button mat-raised-button color="primary" (click)="refresh()">Refresh Leaderboard</button>
|
3 |
<table mat-table [dataSource]="dataSource" matSort>
|
4 |
|
|
|
64 |
<mat-row *matRowDef="let row; columns: displayedColumns"></mat-row>
|
65 |
</table>
|
66 |
</mat-card>
|
67 |
+
|
68 |
+
<mat-card *ngIf="task == 'Summary Generation'">
|
69 |
+
<h2>Summary Generation Matrics are under construction</h2>
|
70 |
+
</mat-card>
|