From aee9bb9267e17129e3becd4997081dc343cde5c9 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Fri, 27 Mar 2026 06:25:43 -0700 Subject: [PATCH] All a click in an unselected item to immediately select --- ts/components/CommunicationColumnList.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ts/components/CommunicationColumnList.vue b/ts/components/CommunicationColumnList.vue index 0b8374ee..82c4ceb9 100644 --- a/ts/components/CommunicationColumnList.vue +++ b/ts/components/CommunicationColumnList.vue @@ -163,8 +163,10 @@ const emit = defineEmits(); const handleClick = (id: string) => { if (props.selectedId == null) { emit("select", id); - } else { + } else if (props.selectedId == id) { emit("deselect", id); + } else { + emit("select", id); } }; const searchFilter = ref("");