We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baff8c5 commit 3452006Copy full SHA for 3452006
packages/service/core/app/tool/api.ts
@@ -16,8 +16,8 @@ export async function getSystemToolList() {
16
id: `${PluginSourceEnum.systemTool}-${item.id}`,
17
parentId: item.parentId ? `${PluginSourceEnum.systemTool}-${item.parentId}` : undefined,
18
avatar:
19
- item.avatar && item.avatar.startsWith('/imgs/tools')
20
- ? `/api/system/pluginImgs/${item.avatar.replace('/imgs/tools', '')}`
+ item.avatar && item.avatar.startsWith('/imgs/tools/')
+ ? `/api/system/pluginImgs/${item.avatar.replace('/imgs/tools/', '')}`
21
: item.avatar
22
};
23
});
0 commit comments