aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-forms/input-text.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/shared/shared-forms/input-text.component.html')
-rw-r--r--client/src/app/shared/shared-forms/input-text.component.html11
1 files changed, 5 insertions, 6 deletions
diff --git a/client/src/app/shared/shared-forms/input-text.component.html b/client/src/app/shared/shared-forms/input-text.component.html
index abb53a085..4747e2f8f 100644
--- a/client/src/app/shared/shared-forms/input-text.component.html
+++ b/client/src/app/shared/shared-forms/input-text.component.html
@@ -11,13 +11,12 @@
11 <my-global-icon *ngIf="!show" iconName="eye-close"></my-global-icon> 11 <my-global-icon *ngIf="!show" iconName="eye-close"></my-global-icon>
12 </button> 12 </button>
13 13
14 <button 14 <my-copy-button
15 *ngIf="withCopy" [cdkCopyToClipboard]="input.value" (click)="activateCopiedMessage()" type="button" 15 *ngIf="withCopy" [value]="input.value" i18n-notification notification="Copied"
16 class="btn btn-outline-secondary text-uppercase" i18n-title title="Copy" 16 [isInputGroup]="true" i18n
17 > 17 >
18 <my-global-icon iconName="copy"></my-global-icon> 18 COPY
19 <span class="copy-text">Copy</span> 19 </my-copy-button>
20 </button>
21</div> 20</div>
22 21
23<div *ngIf="formError" class="form-error">{{ formError }}</div> 22<div *ngIf="formError" class="form-error">{{ formError }}</div>