diff --git a/frontend/src/lib/components/audit-log-list.svelte b/frontend/src/lib/components/audit-log-list.svelte
index 384a2cc8..22e7e55d 100644
--- a/frontend/src/lib/components/audit-log-list.svelte
+++ b/frontend/src/lib/components/audit-log-list.svelte
@@ -53,9 +53,15 @@
{translateAuditLogEvent(item.event)}
- {item.city && item.country ? `${item.city}, ${item.country}` : m.unknown()}
+
+ {#if item.city && item.country}
+ {item.city}, {item.country}
+ {:else if item.country}
+ {item.country}
+ {:else}
+ {m.unknown()}
+ {/if}
+
{item.ipAddress}
{item.device}
{item.data.clientName}