From 3956e26cf4756c37b83ac32aebaf7cc56be22ad5 Mon Sep 17 00:00:00 2001 From: liamcottle Date: Mon, 24 Nov 2025 12:23:31 +1300 Subject: [PATCH] show incoming caller identity hash --- src/frontend/components/App.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/frontend/components/App.vue b/src/frontend/components/App.vue index 63d989b..4290cf9 100644 --- a/src/frontend/components/App.vue +++ b/src/frontend/components/App.vue @@ -273,7 +273,10 @@ dark:bg-zinc-800 dark:text-white dark:hover:bg-zinc-700 dark:focus-visible:outli Connecting... Active - Ringing... + + {{ Utils.formatDestinationHash(activeCall.remote_identity_hash) }} + Ringing... + Connecting... @@ -586,6 +589,9 @@ export default { }, }, computed: { + Utils() { + return Utils; + }, unreadConversationsCount() { return GlobalState.unreadConversationsCount; },