Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[hotfix] Fix MDC layout issue in permission dialog #1834

Merged
merged 1 commit into from Aug 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -45,8 +45,8 @@ <h4>{{ headerTitle }}</h4>
<span class="general-options-header">Users</span>
<mat-form-field class="example-chip-list" color="accent">
<mat-label>Authorized Users</mat-label>
<mat-chip-list #chipList aria-label="User selection">
<mat-chip
<mat-chip-grid #chipList aria-label="User selection">
<mat-chip-row
*ngFor="let user of grantedUserAuthorities"
selectable="true"
removable="true"
Expand All @@ -56,7 +56,7 @@ <h4>{{ headerTitle }}</h4>
<button matChipRemove>
<mat-icon>cancel</mat-icon>
</button>
</mat-chip>
</mat-chip-row>
<input
placeholder="Add"
#userInput
Expand All @@ -68,7 +68,7 @@ <h4>{{ headerTitle }}</h4>
"
(matChipInputTokenEnd)="addUser($event)"
/>
</mat-chip-list>
</mat-chip-grid>
<mat-autocomplete
#auto="matAutocomplete"
(optionSelected)="userSelected($event)"
Expand All @@ -90,8 +90,8 @@ <h4>{{ headerTitle }}</h4>
<span class="general-options-header">Groups</span>
<mat-form-field class="example-chip-list" color="accent">
<mat-label>Authorized Groups</mat-label>
<mat-chip-list #chipList aria-label="Group selection">
<mat-chip
<mat-chip-grid #chipList aria-label="Group selection">
<mat-chip-row
*ngFor="let group of grantedGroupAuthorities"
selectable="true"
removable="true"
Expand All @@ -101,7 +101,7 @@ <h4>{{ headerTitle }}</h4>
<button matChipRemove>
<mat-icon>cancel</mat-icon>
</button>
</mat-chip>
</mat-chip-row>
<input
placeholder="Add"
#groupInput
Expand All @@ -113,7 +113,7 @@ <h4>{{ headerTitle }}</h4>
"
(matChipInputTokenEnd)="addGroup($event)"
/>
</mat-chip-list>
</mat-chip-grid>
<mat-autocomplete
#auto="matAutocomplete"
(optionSelected)="groupSelected($event)"
Expand Down