Browse Source

feat(nc-gui): Removed junction table showing when show m2m table option is selected

pull/3612/head
Muhammed Mustafa 2 years ago
parent
commit
3cc285ff76
  1. 4
      packages/nc-gui/components/erd/View.vue

4
packages/nc-gui/components/erd/View.vue

@ -48,7 +48,9 @@ onMounted(async () => {
})
const tablesFilteredWithConfig = computed(() =>
tables.value.filter((table) => (!config.value.showViews && table.type !== 'view') || config.value.showViews),
tables.value
.filter((table) => !table.mm)
.filter((table) => (!config.value.showViews && table.type !== 'view') || config.value.showViews),
)
watch(

Loading…
Cancel
Save