From 9d988adb46a534b59b574b4d2b3b2328898abf9d Mon Sep 17 00:00:00 2001 From: Pranav C <61551451+pranavxc@users.noreply.github.com> Date: Mon, 12 Jul 2021 12:54:01 +0530 Subject: [PATCH] fix(gui): Avoid type change on column datatype selection re #332 Signed-off-by: Pranav C <61551451+pranavxc@users.noreply.github.com> --- .../components/project/spreadsheet/components/editColumn.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nc-gui/components/project/spreadsheet/components/editColumn.vue b/packages/nc-gui/components/project/spreadsheet/components/editColumn.vue index 7628a2ae04..aa22e73752 100644 --- a/packages/nc-gui/components/project/spreadsheet/components/editColumn.vue +++ b/packages/nc-gui/components/project/spreadsheet/components/editColumn.vue @@ -437,7 +437,7 @@ export default { this.newColumn.dtx = 'specificType'; - this.$set(this.newColumn, 'uidt', this.sqlUi.getUIType(this.newColumn)); + // this.$set(this.newColumn, 'uidt', this.sqlUi.getUIType(this.newColumn)); this.newColumn.altered = this.newColumn.altered || 2; },