Skip to content

Commit

Permalink
fix: getDateRangeEnd() error in month view when option.month.isAlways…
Browse files Browse the repository at this point in the history
…6Week is undefined.
  • Loading branch information
Dongsik Yoo committed Aug 8, 2018
1 parent fc9d5e1 commit 816d78d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/common/datetime.js
Expand Up @@ -470,7 +470,7 @@ datetime = {
cursor, week,
calendar = [],
startDayOfWeek = options.startDayOfWeek,
isAlways6Week = options.isAlways6Week,
isAlways6Week = util.isUndefined(options.isAlways6Week) ? true : options.isAlways6Week,
visibleWeeksCount = options.visibleWeeksCount,
workweek = options.workweek;

Expand Down

0 comments on commit 816d78d

Please sign in to comment.