diff --git a/packages/nc-gui/components/erd/View.vue b/packages/nc-gui/components/erd/View.vue index c822801701..58b28323c3 100644 --- a/packages/nc-gui/components/erd/View.vue +++ b/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(