Skip to content

Commit

Permalink
Fix participant create
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianjoel committed May 28, 2024
1 parent 572668c commit d59feef
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@ <h2 mat-dialog-title class="flex-container padding-top-16">
<div class="account-dialog-menu-items">
<mat-nav-list>
<ng-container *ngFor="let item of filteredMenuItems">
<mat-list-item
[activated]="activeMenuItem === item.name"
(click)="activeMenuItem = item.name"
>
<mat-list-item [activated]="activeMenuItem === item.name" (click)="activeMenuItem = item.name">
{{ item.name | translate }}
</mat-list-item>
<mat-divider></mat-divider>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ <h2>{{ 'Personal information' | translate }}</h2>
*ngIf="isNewUser"
matSuffix
type="button"
mat-button
mat-icon-button
[matTooltip]="'Leave blank to automatically generate the username.' | translate"
matTooltipPosition="above"
Expand All @@ -138,7 +137,6 @@ <h2>{{ 'Personal information' | translate }}</h2>
*ngIf="isNewUser && generatePasswordFn"
matSuffix
type="button"
mat-button
mat-icon-button
[disabled]="!generatePasswordFn"
(click)="setRandomPassword()"
Expand All @@ -150,7 +148,6 @@ <h2>{{ 'Personal information' | translate }}</h2>
*ngIf="isNewUser"
matSuffix
type="button"
mat-button
mat-icon-button
[matTooltip]="'Leave blank to automatically generate the password.' | translate"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ <h2>{{ 'Personal information' | translate }}</h2>
<button
matSuffix
type="button"
mat-button
mat-icon-button
[matTooltip]="'Leave blank to automatically generate the username.' | translate"
>
Expand Down

0 comments on commit d59feef

Please sign in to comment.