diff --git a/src/app/components/shared/comment-list/comment-list.component.html b/src/app/components/shared/comment-list/comment-list.component.html index 6a0a0de074ca38da88a0f84f9db28a10e19b7e9b..14ecfd1f61af68c8a83afa3fa4c862346cf9f524 100644 --- a/src/app/components/shared/comment-list/comment-list.component.html +++ b/src/app/components/shared/comment-list/comment-list.component.html @@ -7,7 +7,7 @@ <button mat-button *ngIf="searchBox.value" (click)="hideCommentsList=false; searchBox.value=''"> <mat-icon>close</mat-icon> </button> - <button mat-button *ngIf="!searchBox.value && userRole == '1'" [disabled]="!comments.length > 0" color="accent" + <button mat-button *ngIf="!searchBox.value && userRole == '1' && comments.length > 0" [matTooltip]="'Export comments'" (click)="export(true)"> <mat-icon class="add-icon" id="export-icon">cloud_download</mat-icon> </button> @@ -20,4 +20,4 @@ </mat-card> <mat-card class="outer-card" *ngIf="!hideCommentsList"> <app-comment *ngFor="let current of comments | orderBy: 'score'" [comment]="current"></app-comment> -</mat-card> +</mat-card> \ No newline at end of file