We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36a8c2a commit 31968faCopy full SHA for 31968fa
src/VueDatePicker/components/DatePicker/DpCalendar.vue
@@ -382,7 +382,7 @@
382
};
383
384
const onDateSelect = (ev: Event, dayVal: ICalendarDay, isClick = true) => {
385
- if ((isClick && isIOS()) || (!isClick && !isIOS())) return;
+ if (!isClick && isIOS()) return;
386
if (!defaultedMultiDates.value.enabled || defaultedConfig.value.allowPreventDefault) {
387
checkStopPropagation(ev, defaultedConfig.value);
388
emit('select-date', dayVal);
0 commit comments