Skip to content

Commit

Permalink
#3624 fix calendar.vue not allowing focus/input
Browse files Browse the repository at this point in the history
  • Loading branch information
cricketthomas committed Mar 1, 2023
1 parent 894a0f5 commit d68ff23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/calendar/Calendar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2503,7 +2503,7 @@ export default {
if (cell) {
cell.tabIndex = '0';
if (!this.inline && (!this.navigationState || !this.navigationState.button) && !this.timePickerChange) {
if (!this.preventFocus && !this.inline && (!this.navigationState || !this.navigationState.button) && !this.timePickerChange) {
cell.focus();
}
Expand Down

0 comments on commit d68ff23

Please sign in to comment.