Skip to content

Commit

Permalink
Bugfix: hide compare button for anonymous report (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeknovy authored Mar 7, 2024
1 parent 565f395 commit 3e7e158
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ <h6 class="card-header bg-transparent">Request Statistics <span class="compare">
(click)="switchComparisonDataUnit()"><span class="compare-desc-btn">
<i class="fa" [ngClass]="{'fa-percent': defaultUnit, 'fa-stopwatch': !defaultUnit}"></i></span>
</button>
<app-stats-compare (itemDetailToCompare)="itemToCompare($event)"></app-stats-compare>
<app-stats-compare *ngIf="!isAnonymous" (itemDetailToCompare)="itemToCompare($event)"></app-stats-compare>


<div *ngIf="!isAnonymous" class="btn-group mr-3">
Expand Down

0 comments on commit 3e7e158

Please sign in to comment.