Skip to content

Commit

Permalink
8021. Fixed misalignment on date cells when selected
Browse files Browse the repository at this point in the history
  • Loading branch information
yohannahbautista committed Nov 9, 2023
1 parent 9b4cca9 commit 780dcfc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand Down
2 changes: 1 addition & 1 deletion src/components/datagrid/datagrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

Expand Down

0 comments on commit 780dcfc

Please sign in to comment.