Browse Source

fix(gui-v2): missing type on error

pull/2838/head
Wing-Kam Wong 2 years ago
parent
commit
73182acf03
  1. 2
      packages/nc-gui-v2/components/webhook/Editor.vue

2
packages/nc-gui-v2/components/webhook/Editor.vue

@ -214,7 +214,7 @@ async function loadPluginList() {
o[p.title] = p
return o
}, {})
} catch (e) {
} catch (e: any) {
toast.error(extractSdkResponseErrorMsg(e))
}
}

Loading…
Cancel
Save