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() {
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