Bugfixeds
This commit is contained in:
parent
a5165dc3ba
commit
4403c9ebde
20 changed files with 199 additions and 85 deletions
|
|
@ -1,4 +1,4 @@
|
|||
import { computed, ref, watch } from "vue";
|
||||
import { computed, onScopeDispose, ref, watch } from "vue";
|
||||
import { useRoute, useRouter } from "vue-router";
|
||||
import {
|
||||
listPublications,
|
||||
|
|
@ -271,6 +271,10 @@ export function usePublicationData() {
|
|||
}, 300);
|
||||
});
|
||||
|
||||
onScopeDispose(() => {
|
||||
if (searchDebounceTimer !== null) clearTimeout(searchDebounceTimer);
|
||||
});
|
||||
|
||||
// --- Run-triggered refresh watcher ---
|
||||
|
||||
watch(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue