Skip to content

Commit

Permalink
Merge pull request primefaces#340 from atretyak1985/issue_#NNTR-264
Browse files Browse the repository at this point in the history
[NNTR-264]Disabled/locked out users should be grayed out in Users
  • Loading branch information
Gunnsteinn Hall authored Dec 9, 2019
2 parents ad2c2fc + 56a4caa commit eca9bcd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ <h1 class="panel-title">
</tr>
</ng-template>
<ng-template pTemplate="body" let-rowData let-columns="columns">
<tr #row id="item-{{ rowData.id }}" class="table-row" [ngClass]="{'disabled': rowData.archived, 'flash-row': flashRow && row.id === 'item-' + selectedId }">
<tr #row id="item-{{ rowData.id }}" class="table-row" [ngClass]="{'disabled': rowData.account_disabled, 'flash-row': flashRow && row.id === 'item-' + selectedId }">
<td class="table-cell" [ngStyle]="{'width': getColumnWidth('full_username')}">
<a href="#" (click)="itemSelected($event, rowData)">{{ rowData.full_username }}</a>
</td>
Expand Down

0 comments on commit eca9bcd

Please sign in to comment.