Vanessa 2023-04-28 12:02:08 +08:00
parent 9cb6e9ec25
commit 509a53a4bf
9 changed files with 121 additions and 85 deletions

View file

@ -109,6 +109,11 @@ export const reloadSync = (data: { upsertRootIDs: string[], removeRootIDs: strin
allModels.search.forEach(item => {
item.parent.panelElement.querySelector("#searchInput").dispatchEvent(new CustomEvent("input"));
});
allModels.custom.forEach(item => {
if (item.update) {
item.update();
}
});
/// #endif
};