Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tiampersian committed Dec 10, 2023
1 parent 3081767 commit 79e30ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion projects/tiampersian/kendo-jalali-date-inputs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tiampersian/kendo-jalali-date-inputs",
"version": "0.1.334",
"version": "0.1.336",
"license": "MIT",
"description": "angular jalali ( persian ) date time picker base on kendo-angular-dateinputs ",
"homepage": "https://github.com/tiampersian/kendo-jalali-date-inputs",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class JalaliMonthViewService extends MonthViewService {
abbrMonthNames2() {
if (this.intl.isJalali) {
return Array.from(Array(12).keys()).map((x, i) => {
return this.intl.getDayJsValue('' + i, 'M').format('MMMM');
return this.intl.getDayJsValue('' + i).format('MMMM');
});
}
return this.intl.getDayJsValue().localeData().monthsShort();
Expand Down

0 comments on commit 79e30ab

Please sign in to comment.