Browse Source

fix(gui-v2): SmartsheetColumnEditOrAdd overlay issue

pull/3030/head
Wing-Kam Wong 2 years ago
parent
commit
32fcee81bb
  1. 11
      packages/nc-gui-v2/components/smartsheet/Form.vue

11
packages/nc-gui-v2/components/smartsheet/Form.vue

@ -401,6 +401,7 @@ onMounted(async () => {
<!-- Drag and drop fields here to hide -->
{{ $t('msg.info.dragDropHide') }}
</div>
<a-dropdown v-model:visible="showColumnDropdown" :trigger="['click']">
<a-button type="link" class="w-full caption mt-2" size="large" @click="showColumnDropdown = true">
<div class="flex items-center prose-sm justify-center text-gray-400">
<MdiPlusIcon />
@ -408,12 +409,10 @@ onMounted(async () => {
{{ $t('activity.addField') }}
</div>
</a-button>
<SmartsheetColumnEditOrAdd
v-show="showColumnDropdown"
ref="editOrAddRef"
@submit="submitCallback"
@cancel="showColumnDropdown = false"
/>
<template #overlay>
<SmartsheetColumnEditOrAdd ref="editOrAddRef" @submit="submitCallback" @cancel="showColumnDropdown = false" />
</template>
</a-dropdown>
</template>
</draggable>
</a-col>

Loading…
Cancel
Save