Browse Source
Merge pull request #9332 from ArtemDzhereleiko/AD/bug-fix/dashboard-detatil-button/no-space
Fixed dashboard detail button
pull/9318/head
Igor Kulikov
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
10 additions and
10 deletions
-
ui-ngx/src/app/modules/home/pages/dashboard/dashboard-form.component.html
|
|
|
@ -65,16 +65,16 @@ |
|
|
|
[fxShow]="!hideDelete() && !isEdit"> |
|
|
|
{{'dashboard.delete' | translate }} |
|
|
|
</button> |
|
|
|
</div> |
|
|
|
<div fxLayout="row"> |
|
|
|
<button mat-raised-button |
|
|
|
ngxClipboard |
|
|
|
(cbOnSuccess)="onDashboardIdCopied($event)" |
|
|
|
[cbContent]="entity?.id?.id" |
|
|
|
[fxShow]="!isEdit"> |
|
|
|
<mat-icon svgIcon="mdi:clipboard-arrow-left"></mat-icon> |
|
|
|
<span translate>dashboard.copyId</span> |
|
|
|
</button> |
|
|
|
<div fxLayout="row"> |
|
|
|
<button mat-raised-button |
|
|
|
ngxClipboard |
|
|
|
(cbOnSuccess)="onDashboardIdCopied($event)" |
|
|
|
[cbContent]="entity?.id?.id" |
|
|
|
[fxShow]="!isEdit"> |
|
|
|
<mat-icon svgIcon="mdi:clipboard-arrow-left"></mat-icon> |
|
|
|
<span translate>dashboard.copyId</span> |
|
|
|
</button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="mat-padding" fxLayout="column"> |
|
|
|
<mat-form-field class="mat-block" |
|
|
|
|