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

Loading…
Cancel
Save