From 780dcfc098e87c0e7a8d4d6d83203277a2c9eefe Mon Sep 17 00:00:00 2001 From: Yohannah Bautista Date: Thu, 9 Nov 2023 15:05:44 +0800 Subject: [PATCH] 8021. Fixed misalignment on date cells when selected --- docs/CHANGELOG.md | 1 + src/components/datagrid/datagrid.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 18b8ae5d6a..307ee820ce 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -6,6 +6,7 @@ ## v4.90.0 Fixes +- `[Datagrid]` Fixed misalignment on date cells when selected. ([#8021](https://github.com/infor-design/enterprise/issues/8021)) - `[Fileupload]` Added condition to not allow for input clearing for readonly and disabled. ([#8024](https://github.com/infor-design/enterprise/issues/8024)) - `[Modal]` Adjusted modal title spacing to avoid icon from cropping. ([#8031](https://github.com/infor-design/enterprise/issues/8031)) diff --git a/src/components/datagrid/datagrid.js b/src/components/datagrid/datagrid.js index 56a0b83c60..6e4debf5ed 100644 --- a/src/components/datagrid/datagrid.js +++ b/src/components/datagrid/datagrid.js @@ -10449,7 +10449,7 @@ Datagrid.prototype = { this.addToDirtyArray(idx, cell, data); } - if (typeof this.editor.focus === 'function') { + if (typeof this.editor.focus === 'function' && this.editor.name !== 'date') { this.editor.focus(); }