Browse Source

feat(nc-gui): disable call log if automationLogLevel is off

pull/5349/head
Wing-Kam Wong 2 years ago
parent
commit
da439486d2
  1. 2
      packages/nc-gui/components/webhook/Editor.vue

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

@ -743,7 +743,7 @@ onMounted(async () => {
</a-form>
</a-tab-pane>
<a-tab-pane key="hook-log" class="nc-hook-log" :disabled="!props.hook">
<a-tab-pane key="hook-log" class="nc-hook-log" :disabled="!props.hook || appInfo.automationLogLevel === 'OFF'">
<template #tab>
<span>
<MdiHistory />

Loading…
Cancel
Save