Skip to content

Commit

Permalink
fixed small ngif error; #SNRGY-2814
Browse files Browse the repository at this point in the history
  • Loading branch information
hahahannes committed Nov 29, 2023
1 parent 4a3c89f commit b8a0db3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ <h2 mat-dialog-title>Edit Chart Export</h2>

</div>

<table *ngIf="ready" mat-table [dataSource]="dataSource" *ngIf="userHasUpdatePropertiesAuthorization">
<table *ngIf="ready && userHasUpdatePropertiesAuthorization" mat-table [dataSource]="dataSource">

<ng-container matColumnDef="exportName">
<th mat-header-cell *matHeaderCellDef>Export</th>
Expand Down

0 comments on commit b8a0db3

Please sign in to comment.