Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
rrenkert committed Apr 15, 2024
1 parent 1a98c7c commit f0d2dd6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,10 @@ <h4>{{ 'Name' | translate }}</h4>
&nbsp;
<span>({{ user.pronoun }})</span>
</ng-container>
<mat-icon *ngIf="!user.is_active && isAllowed('seeSensitiveData')" matTooltip="{{ 'Inactive' | translate }}">
<mat-icon
*ngIf="!user.is_active && isAllowed('seeSensitiveData')"
matTooltip="{{ 'Inactive' | translate }}"
>
block
</mat-icon>
<mat-icon
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,13 +170,13 @@ export class ParticipantListFilterService extends BaseMeetingFilterListService<V
property: `is_active`,
shouldHideFn() {
return !this.canSeeSensitiveData;
},
}
},
{
property: `hasSamlId`,
shouldHideFn() {
return !this.canManage;
},
}
}
];
}
Expand Down

0 comments on commit f0d2dd6

Please sign in to comment.