diff --git a/plugins/contact-resources/src/components/PersonPresenter.svelte b/plugins/contact-resources/src/components/PersonPresenter.svelte index 1455fae4a8..8fea5a1b35 100644 --- a/plugins/contact-resources/src/components/PersonPresenter.svelte +++ b/plugins/contact-resources/src/components/PersonPresenter.svelte @@ -33,10 +33,16 @@ async function onClick() { } -
- -
{formatName(value.name)}
-
+{#if value} +
+ +
{formatName(value.name)}
+
+{:else} +
+ Not defined +
+{/if}