From 0c73bb8579b3077d0c838deaa9c5c05556991f10 Mon Sep 17 00:00:00 2001 From: abdulrahman Date: Thu, 14 May 2026 13:05:02 +0300 Subject: [PATCH] fix: protocol filter placeholder not showing on initial load --- 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], () => {