Browse Source

Merge pull request #1878 from mertmit/fix-bt-tooltip

fix: belongs to header tooltip
pull/1881/head
աɨռɢӄաօռɢ 2 years ago committed by GitHub
parent
commit
e993715c27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nc-gui/components/project/spreadsheet/components/virtualHeaderCell.vue

2
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 <br>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') {

Loading…
Cancel
Save