Skip to content

Commit

Permalink
fixed start up bug on netlify where task view was hidden
Browse files Browse the repository at this point in the history
  • Loading branch information
Ron Schmitt committed Dec 27, 2021
1 parent aa66e23 commit 09731b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion projects/ngx-mat-tui-calendar/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-mat-tui-calendar",
"version": "12.0.10",
"version": "12.0.11",
"author": "ron schmitt",
"license": "MIT",
"description": "Angular Material Design wrapper, supporting theming, for the Toast UI Calendar, suitable for web-based scheduling, events, appointments, and day planner applications.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,8 @@ export class NgxMatTuiCalendarComponent implements OnInit, OnChanges, OnDestroy
// console.warn(`calendar.component.ts: createTUICalendar: ioptions:`, ioptions);
this.calendar = new Calendar('#calendar', ioptions);
// console.warn(`calendar.component.ts: createTUICalendar: this.calendar:`, this.calendar);
this.calendar.toggleScheduleView(true);

}


Expand Down Expand Up @@ -416,6 +418,7 @@ export class NgxMatTuiCalendarComponent implements OnInit, OnChanges, OnDestroy
this.calendar.setOptions(ioptions);
this.calendar.setTheme(ioptions.theme);
this.calendar.render(true);
this.calendar.toggleScheduleView(true);
return ioptions;
}

Expand Down

0 comments on commit 09731b8

Please sign in to comment.