diff --git a/packages/nc-gui/components/project/spreadsheet/components/expandedForm.vue b/packages/nc-gui/components/project/spreadsheet/components/expandedForm.vue index c414c8c888..21ab4f76da 100644 --- a/packages/nc-gui/components/project/spreadsheet/components/expandedForm.vue +++ b/packages/nc-gui/components/project/spreadsheet/components/expandedForm.vue @@ -6,7 +6,13 @@ mdi-table-arrow-right - {{ table }} : {{ localState[primaryValueColumn] }} + + + : {{ localState[primaryValueColumn] }} @@ -329,7 +335,7 @@ export default { return Object.values(this.changedColumns).some(Boolean) }, localBreadcrumbs() { - return [...this.breadcrumbs, `${this.table} (${this.localState && this.localState[this.primaryValueColumn]})`] + return [...this.breadcrumbs, `${this.meta ? this.meta._tn : this.table} (${this.localState && this.localState[this.primaryValueColumn]})`] } }, watch: { diff --git a/packages/nc-gui/components/project/spreadsheet/components/headerCell.vue b/packages/nc-gui/components/project/spreadsheet/components/headerCell.vue index 747e37fc32..4199c79c8c 100644 --- a/packages/nc-gui/components/project/spreadsheet/components/headerCell.vue +++ b/packages/nc-gui/components/project/spreadsheet/components/headerCell.vue @@ -158,6 +158,7 @@ export default { dbAlias: this.nodes.dbAlias }, 'tableUpdate', { tn: this.nodes.tn, + _tn: this.meta._tn, originalColumns: this.meta.columns, columns }])