We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1292664 commit 7cd2ddfCopy full SHA for 7cd2ddf
src/vcf-date-range-picker-mixin.js
@@ -1227,6 +1227,7 @@ export const DateRangePickerMixin = (subclass) =>
1227
this._selectedStartDate = startParsedDate;
1228
}
1229
e.preventDefault();
1230
+ this._selectingStartDate=false;
1231
this._inputEndElement.focus();
1232
1233
} else if (document.activeElement === this && this.shadowRoot.activeElement === this._inputEndElement) {
@@ -1236,6 +1237,7 @@ export const DateRangePickerMixin = (subclass) =>
1236
1237
this._selectedEndDate = endParsedDate;
1238
1239
1240
+ this._selectingStartDate=true;
1241
this._inputStartElement.focus();
1242
} else {
1243
this.close();
0 commit comments