Showing
2 changed files
with
2 additions
and
2 deletions
... | ... | @@ -56,7 +56,7 @@ |
56 | 56 | <div fxLayout="row" fxLayout.xs="column"> |
57 | 57 | <button mat-raised-button |
58 | 58 | ngxClipboard |
59 | - (cbOnSuccess)="onUserCopiedId($event)" | |
59 | + (cbOnSuccess)="onUserIdCopied($event)" | |
60 | 60 | [cbContent]="entity?.id?.id" |
61 | 61 | [disabled]="(isLoading$ | async)" |
62 | 62 | [fxShow]="!isEdit"> | ... | ... |
... | ... | @@ -103,7 +103,7 @@ export class UserComponent extends EntityComponent<User> { |
103 | 103 | isDefinedAndNotNull(entity.additionalInfo.homeDashboardHideToolbar) ? entity.additionalInfo.homeDashboardHideToolbar : true}}); |
104 | 104 | } |
105 | 105 | |
106 | - onUserCopiedId($event) { | |
106 | + onUserIdCopied($event) { | |
107 | 107 | this.store.dispatch(new ActionNotificationShow( |
108 | 108 | { |
109 | 109 | message: this.translate.instant('user.idCopiedMessage'), | ... | ... |