diff --git a/src/app/shared/components/ui/copy-text/copy-text.component.html b/src/app/shared/components/ui/copy-text/copy-text.component.html index c4265506..c63a7e8e 100644 --- a/src/app/shared/components/ui/copy-text/copy-text.component.html +++ b/src/app/shared/components/ui/copy-text/copy-text.component.html @@ -1,7 +1,6 @@ - diff --git a/src/app/shared/components/ui/copy-text/copy-text.component.ts b/src/app/shared/components/ui/copy-text/copy-text.component.ts index 13bc2ed7..ae3cd96f 100644 --- a/src/app/shared/components/ui/copy-text/copy-text.component.ts +++ b/src/app/shared/components/ui/copy-text/copy-text.component.ts @@ -11,7 +11,7 @@ import { ToastService } from '../../../../core/services/toast.service'; export class CopyTextComponent implements OnInit { @Input() public textToCopy: string; public displayContentToCopy = false; - @Input() public displayLabelButton = false; + @Input() public displayLabelButton = true; constructor(private _clipboardService: ClipboardService, private toastService: ToastService) {}