Browse Source

feat(nc-gui): add the copy hook to the top

pull/5317/head
Wing-Kam Wong 2 years ago
parent
commit
5a8942d46d
  1. 2
      packages/nc-gui/components/webhook/List.vue

2
packages/nc-gui/components/webhook/List.vue

@ -69,7 +69,7 @@ async function copyHook(hook: HookType) {
} as FilterReqType)
}
newHook.notification = parseProp(newHook.notification)
hooks.value.push(newHook)
hooks.value = [newHook, ...hooks.value]
}
} catch (e: any) {
message.error(await extractSdkResponseErrorMsg(e))

Loading…
Cancel
Save