Skip to content

Commit

Permalink
Enabled code path for parsing multiple dates when date picker is in d…
Browse files Browse the repository at this point in the history
…ate range mode (#2872)
  • Loading branch information
hagen93 authored Nov 6, 2023
1 parent 0636015 commit 041b929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/tempus-dominus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ class TempusDominus {
};

const value = this.optionsStore.input.value;
if (this.optionsStore.options.multipleDates) {
if (this.optionsStore.options.multipleDates || this.optionsStore.options.dateRange) {
try {
const valueSplit = value.split(
this.optionsStore.options.multipleDatesSeparator
Expand Down

0 comments on commit 041b929

Please sign in to comment.