Skip to content

Commit

Permalink
Use Icons for links in GND plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
dokempf committed Jul 25, 2024
1 parent b3fee89 commit 569d6c3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/fields/CustomDataTypeUBHDGND.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<script>
import { fieldData } from "../../lib/easydbHelpers";
import { A, P } from "flowbite-svelte";
import { A } from "flowbite-svelte";
import { ArrowUpRightFromSquareOutline } from "flowbite-svelte-icons";
export let data;
export let table;
Expand Down Expand Up @@ -28,5 +30,7 @@

<span class="easydb-custom-ubhdgnd">
{fdata.conceptName}{detailString(fdata.conceptDetails)}
<A href={fdata.conceptURI}>GND</A>
<A href={fdata.conceptURI}>
<ArrowUpRightFromSquareOutline class="w-4 h-4"/>
</A>
</span>

0 comments on commit 569d6c3

Please sign in to comment.