From b0229c0817189c8ee55475d0c8a3688d568e9ded Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sof=C3=ADa=20Aritz?= Date: Sun, 30 Jun 2024 18:33:05 +0200 Subject: [PATCH] display location --- identity-web/src/routes/dashboard/Entries.svelte | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/identity-web/src/routes/dashboard/Entries.svelte b/identity-web/src/routes/dashboard/Entries.svelte index d333e45..4699291 100644 --- a/identity-web/src/routes/dashboard/Entries.svelte +++ b/identity-web/src/routes/dashboard/Entries.svelte @@ -11,6 +11,8 @@ import AssetPreview from './utils/AssetPreview.svelte'; import { createEventDispatcher } from 'svelte'; import Fuse from 'fuse.js'; + import { FontAwesomeIcon } from '@fortawesome/svelte-fontawesome'; + import { faLocationDot } from '@fortawesome/free-solid-svg-icons'; let dispatch = createEventDispatcher(); @@ -162,6 +164,13 @@ {/if} + {#if entry.base.kind === "environment" && typeof entry.base.location === "string"} +
+ + {entry.base.location} +
+ {/if} + {#if entry.description != null} {entry.description} {/if}