From 7328623e1172823cd15ded8fa7c42da393b1fcb5 Mon Sep 17 00:00:00 2001 From: Hivert Quentin Date: Tue, 18 Mar 2025 10:02:14 +0100 Subject: [PATCH] fix(addressBook): fix #2f9c2cf show email if no display name for contact in list --- UI/Templates/ContactsUI/UIxContactEditorTemplate.wox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/Templates/ContactsUI/UIxContactEditorTemplate.wox b/UI/Templates/ContactsUI/UIxContactEditorTemplate.wox index b83b9ef40..5d13dbd06 100644 --- a/UI/Templates/ContactsUI/UIxContactEditorTemplate.wox +++ b/UI/Templates/ContactsUI/UIxContactEditorTemplate.wox @@ -495,7 +495,7 @@
- {{$chip.c_cn || $chip.email}} + {{$chip.c_cn ? $chip.c_cn : $chip.email}}