From 370137aefee6f27824afad49acdc0b329fede2ac Mon Sep 17 00:00:00 2001 From: Bhanu P Chaudhary Date: Mon, 7 Jun 2021 15:49:45 +0530 Subject: [PATCH] added fix for date column in postgres Signed-off-by: Bhanu P Chaudhary --- packages/nc-gui/components/project/spreadsheet/mixins/cell.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nc-gui/components/project/spreadsheet/mixins/cell.js b/packages/nc-gui/components/project/spreadsheet/mixins/cell.js index 1d710c2c20..7bd2bd83c2 100644 --- a/packages/nc-gui/components/project/spreadsheet/mixins/cell.js +++ b/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() {