Browse Source

added fix for date column in postgres

Signed-off-by: Bhanu P Chaudhary <bhanu423@gmail.com>
pull/245/head
Bhanu P Chaudhary 3 years ago
parent
commit
370137aefe
  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() { }, isFloat() {
return this.abstractType === 'float'; return this.abstractType === 'float';
}, isDate() { }, isDate() {
return this.abstractType === 'date'; return this.abstractType === 'date' || this.column.uidt === 'Date';
}, isTime() { }, isTime() {
return this.abstractType === 'time'; return this.abstractType === 'time';
}, isDateTime() { }, isDateTime() {

Loading…
Cancel
Save