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.
isFirstInRange
isLastInRange
1 parent a601828 commit fd1c170Copy full SHA for fd1c170
src/components/calendar/days-view/days-view.ts
@@ -276,7 +276,7 @@ export default class IgcDaysViewComponent extends EventEmitterMixin<
276
// XXX: Ranges
277
278
private isFirstInRange(day: CalendarDay) {
279
- if (this._isSingle || !this._hasValues) {
+ if (!this._isRange || !this._hasValues) {
280
return false;
281
}
282
@@ -288,7 +288,7 @@ export default class IgcDaysViewComponent extends EventEmitterMixin<
288
289
290
private isLastInRange(day: CalendarDay) {
291
292
293
294
0 commit comments