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 483538a commit 37a675eCopy full SHA for 37a675e
ui/src/views/tool/toolStore/ToolStoreDialog.vue
@@ -219,6 +219,10 @@ async function getStoreToolList() {
219
const res = await ToolStoreApi.getStoreToolList({ name: searchValue.value }, loading)
220
const tags = res.data.additionalProperties.tags
221
const storeTools = res.data.apps
222
+ //
223
+ storeTools.forEach((tool: any) => {
224
+ tool.desc = tool.description
225
+ })
226
227
if (storeTools.length === 0) {
228
filterList.value = []
0 commit comments