From eacb9f63b020916e25881f5c5dbda1ec2aedb9b5 Mon Sep 17 00:00:00 2001 From: Abdalrahman Date: Thu, 14 May 2026 13:12:44 +0300 Subject: [PATCH] fix: protocol filter placeholder not showing on initial load (#4372) --- frontend/src/pages/inbounds/InboundList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/inbounds/InboundList.vue b/frontend/src/pages/inbounds/InboundList.vue index db0cfa05..4f54b366 100644 --- a/frontend/src/pages/inbounds/InboundList.vue +++ b/frontend/src/pages/inbounds/InboundList.vue @@ -80,7 +80,7 @@ const savedFilterState = (() => { const enableFilter = ref(!!savedFilterState.enableFilter); const searchKey = ref(savedFilterState.searchKey || ''); const filterBy = ref(savedFilterState.filterBy || ''); -const protocolFilter = ref(savedFilterState.protocolFilter || ''); +const protocolFilter = ref(savedFilterState.protocolFilter || undefined); const nodeFilter = ref(savedFilterState.nodeFilter || ''); watch([enableFilter, searchKey, filterBy, protocolFilter, nodeFilter], () => {