Browse Source

Merge pull request #245 from bhanuc/date-ui-fix

added fix for date column in postgres
pull/247/head
o1lab 3 years ago committed by GitHub
parent
commit
a0ccf6c1dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nc-gui/components/project/spreadsheet/mixins/cell.js

2
packages/nc-gui/components/project/spreadsheet/mixins/cell.js

@ -32,7 +32,7 @@ export default {
}, isFloat() {
return this.abstractType === 'float';
}, isDate() {
return this.abstractType === 'date';
return this.abstractType === 'date' || this.column.uidt === 'Date';
}, isTime() {
return this.abstractType === 'time';
}, isDateTime() {

Loading…
Cancel
Save