mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 10:16:59 +00:00
fix(Sentry TypeError): undefined is not an object (evaluating 'ee.excluded')
This commit is contained in:
@@ -240,7 +240,7 @@ const finalSchema = computed(() => {
|
||||
relationships: predictedSchema.value.relationships.filter((relationship: { from: string; to: string }) => {
|
||||
const fromTable = predictedSchema.value.tables.find((table: { title: string }) => table.title === relationship.from)
|
||||
const toTable = predictedSchema.value.tables.find((table: { title: string }) => table.title === relationship.to)
|
||||
return !fromTable.excluded && !toTable.excluded
|
||||
return !fromTable?.excluded && !toTable?.excluded
|
||||
}),
|
||||
views: predictedSchema.value.views.filter((view: any) => !view.excluded),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user