Browse Source

feat(nc-gui): Added view title to ERD view of a grid

pull/3612/head
Muhammed Mustafa 2 years ago
parent
commit
ffcc61e7eb
  1. 8
      packages/nc-gui/components/smartsheet-toolbar/ViewActions.vue

8
packages/nc-gui/components/smartsheet-toolbar/ViewActions.vue

@ -230,7 +230,13 @@ const { isSqlView } = useSmartsheetStoreOrThrow()
<WebhookDrawer v-if="showWebhookDrawer" v-model="showWebhookDrawer" />
<a-modal v-model:visible="showErd" size="small" :title="$t('title.erdView')" :footer="null" width="max(900px,60vw)">
<a-modal
v-model:visible="showErd"
size="small"
:title="`${$t('title.erdView')}: ${selectedView?.title}`"
:footer="null"
width="max(900px,60vw)"
>
<SmartsheetToolbarErd />
</a-modal>

Loading…
Cancel
Save