-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use display name in add to collection * dialog for removing member
- Loading branch information
1 parent
22d497b
commit 3af6822
Showing
6 changed files
with
48 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
src/app/organizations/organization-members/delete-username-confirm-dialog.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<h1 mat-dialog-title>Remove user from organization</h1> | ||
|
||
<div mat-dialog-content> | ||
<p>Are you sure you want to <strong>remove</strong> the user <strong>{{data.role.user.username}}</strong> from the organization <strong>{{data.role.organization.displayName}}</strong>?</p> | ||
</div> | ||
<div mat-dialog-actions fxLayout="row" fxLayoutAlign="end center" fxLayoutGap="10px"> | ||
<button mat-button mat-dialog-close>No Thanks</button> | ||
<button mat-flat-button color="primary" id="remove-user-dialog" [mat-dialog-close]="{ 'role': data.role }">Remove</button> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters