forked from verdnatura/salix-front
fix: refs #8410 removed ref from searching boolean
This commit is contained in:
parent
0d7d60a1e8
commit
42e46a88fb
|
@ -25,7 +25,7 @@ const props = defineProps({
|
||||||
});
|
});
|
||||||
const initialized = ref(false);
|
const initialized = ref(false);
|
||||||
const items = ref([]);
|
const items = ref([]);
|
||||||
const searchingValue = ref(false);
|
const searchingValue = false;
|
||||||
const expansionItemElements = reactive({});
|
const expansionItemElements = reactive({});
|
||||||
const pinnedModules = computed(() => {
|
const pinnedModules = computed(() => {
|
||||||
const map = new Map();
|
const map = new Map();
|
||||||
|
|
Loading…
Reference in New Issue