8144-devToTest_2448 #963

Merged
alexm merged 347 commits from 8144-devToTest_2448 into test 2024-11-19 07:54:42 +00:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit 80770b1165 - Show all commits

View File

@ -22,7 +22,7 @@ const props = defineProps({
default: 'main',
},
});
const initialized = ref(false);
const items = ref([]);
const expansionItemElements = reactive({});
const pinnedModules = computed(() => {
@ -61,11 +61,13 @@ const filteredPinnedModules = computed(() => {
onMounted(async () => {
await navigation.fetchPinned();
getRoutes();
initialized.value = true;
});
watch(
() => route.matched,
() => {
if (!initialized.value) return;
items.value = [];
getRoutes();
},