Commit 05d1c0f9b3caf82a826c9670b9958a3541133faf

Authored by rusikv
1 parent 02061c8b

UI: name function typo fix

... ... @@ -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'),
... ...