🐛 修复 quartz 配置不生效.

This commit is contained in:
lijiahangmax
2024-08-25 00:50:16 +08:00
parent 924b46b41a
commit ee9f51ce7d
13 changed files with 25 additions and 40 deletions

View File

@@ -143,8 +143,8 @@
try {
// 查询
const data = await cacheStore.loadCommandSnippets(true);
snippetGroups.value = data.groups;
ungroupedItems.value = data.ungroupedItems;
snippetGroups.value = data.groups || [];
ungroupedItems.value = data.ungroupedItems || [];
// 设置状态
filterSnippet();
} catch (e) {

View File

@@ -145,8 +145,8 @@
try {
// 查询
const data = await cacheStore.loadPathBookmarks(true);
bookmarkGroups.value = data.groups;
ungroupedItems.value = data.ungroupedItems;
bookmarkGroups.value = data.groups || [];
ungroupedItems.value = data.ungroupedItems || [];
// 设置状态
filterPath();
} catch (e) {