Browse Source

fix(gui): Show warning if user tried to delete table with relation

Signed-off-by: Pranav C <61551451+pranavxc@users.noreply.github.com>
pull/414/head
Pranav C 3 years ago
parent
commit
bdd8f48720
  1. 2
      packages/nc-gui/components/project/spreadsheet/rowsXcDataTable.vue

2
packages/nc-gui/components/project/spreadsheet/rowsXcDataTable.vue

@ -621,7 +621,7 @@ export default {
}), }),
checkAndDeleteTable() { checkAndDeleteTable() {
if ( if (
(!this.meta) && ( !this.meta || (
(this.meta.hasMany && this.meta.hasMany.length) || (this.meta.hasMany && this.meta.hasMany.length) ||
(this.meta.manyToMany && this.meta.manyToMany.length) || (this.meta.manyToMany && this.meta.manyToMany.length) ||
(this.meta.belongsTo && this.meta.belongsTo.length)) (this.meta.belongsTo && this.meta.belongsTo.length))

Loading…
Cancel
Save