mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-05-18 12:05:53 +00:00
fix: protocol filter placeholder not showing on initial load (#4372)
This commit is contained in:
parent
e7035b56fe
commit
eacb9f63b0
1 changed files with 1 additions and 1 deletions
|
|
@ -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], () => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue