From 000952939181bfd870268e99cf36263454a6c4b6 Mon Sep 17 00:00:00 2001 From: mertmit Date: Tue, 26 Apr 2022 11:05:17 +0300 Subject: [PATCH] fix: belongs to header tooltip Signed-off-by: mertmit --- .../project/spreadsheet/components/virtualHeaderCell.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nc-gui/components/project/spreadsheet/components/virtualHeaderCell.vue b/packages/nc-gui/components/project/spreadsheet/components/virtualHeaderCell.vue index 63c550fecf..b33dec8fe8 100644 --- a/packages/nc-gui/components/project/spreadsheet/components/virtualHeaderCell.vue +++ b/packages/nc-gui/components/project/spreadsheet/components/virtualHeaderCell.vue @@ -228,7 +228,7 @@ export default { } else if (this.type === 'mm') { return `'${this.childTable}' & '${this.parentTable}' have
many to many relation` } else if (this.type === 'bt') { - return `'${this.childColumn.column_name}' belongs to '${this.childTable}'` + return `'${this.column.title}' belongs to '${this.childTable}'` } else if (this.type === 'lk') { return `'${this.childColumn.column_name}' from '${this.childTable}' (${this.childColumn.uidt})` } else if (this.type === 'formula') {