- Changes month days count to start from 1 instead of 0

- Closes #672
This commit is contained in:
Vlad
2016-10-26 11:51:04 -04:00
parent bdce7c5e5a
commit e765471f5d

View File

@@ -62,7 +62,7 @@ const _monthDayValues = _.object(
} else {
label = MailPoet.I18n.t('nth').replace("%$1d", day + 1);
}
return [day, label];
return [day + 1, label];
}
)
);