Browse Source

Add copy to clipboard buttons for symbol and ISIN

pull/6640/head
Thomas Kaul 1 day ago
parent
commit
e885d198e7
  1. 6
      apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html

6
apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html

@ -310,6 +310,9 @@
<gf-value
i18n
size="medium"
[enableCopyToClipboardButton]="
user?.settings?.isExperimentalFeatures
"
[hidden]="!SymbolProfile?.symbol"
[value]="SymbolProfile?.symbol"
>Symbol</gf-value
@ -318,6 +321,9 @@
<div class="col-6 mb-3">
<gf-value
size="medium"
[enableCopyToClipboardButton]="
user?.settings?.isExperimentalFeatures
"
[hidden]="!SymbolProfile?.isin"
[value]="SymbolProfile?.isin"
>ISIN</gf-value

Loading…
Cancel
Save