Skip to content

Commit

Permalink
Remove CopyClipboard
Browse files Browse the repository at this point in the history
  • Loading branch information
tfabritius committed Oct 29, 2024
1 parent d942ca5 commit 312a852
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 38 deletions.
29 changes: 0 additions & 29 deletions components/CopyClipboard.vue

This file was deleted.

12 changes: 3 additions & 9 deletions pages/securities/[uuid].vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,15 +100,9 @@ useHead(() => ({
/>
</h2>
<div class="separator-container font-mono">
<CopyClipboard v-if="security.isin" v-tooltip.top="'ISIN'" :text="security.isin">
{{ security.isin }}
</CopyClipboard>
<CopyClipboard v-if="security.wkn" v-tooltip.top="'WKN'" :text="security.wkn">
{{ security.wkn }}
</CopyClipboard>
<CopyClipboard v-if="security.code" v-tooltip.top="'Code'" :text="security.code">
{{ security.code }}
</CopyClipboard>
<span v-if="security.isin">{{ security.isin }}</span>
<span v-if="security.wkn">{{ security.wkn }}</span>
<span v-if="security.code">{{ security.code }}</span>
</div>
</div>
</div>
Expand Down

0 comments on commit 312a852

Please sign in to comment.