Fixed #3452 - Calendar: inline mode accepts focus

pull/3455/head
Tuğçe Küçükoğlu 2022-12-28 16:39:40 +03:00
parent c321e93c9a
commit da943a2a53
1 changed files with 1 additions and 1 deletions

View File

@ -2503,7 +2503,7 @@ export default {
if (cell) { if (cell) {
cell.tabIndex = '0'; cell.tabIndex = '0';
if (!this.preventFocus && (!this.navigationState || !this.navigationState.button) && !this.timePickerChange) { if (!this.inline && (!this.navigationState || !this.navigationState.button) && !this.timePickerChange) {
cell.focus(); cell.focus();
} }