Browse Source

feat(nc-gui): add a-empty for call log

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

1
packages/nc-gui/components/webhook/CallLog.vue

@ -25,6 +25,7 @@ onBeforeMount(async () => {
<template>
<a-skeleton v-if="isLoading" />
<a-empty v-else-if="!hookLogs.length" />
<a-collapse v-else v-model:activeKey="activeKey" class="nc-hook-log-collapse">
<a-collapse-panel v-for="(hookLog, idx) of hookLogs" :key="idx">
<template #header>

Loading…
Cancel
Save