Skip to content

Commit

Permalink
refactor: undo accidental breaking change
Browse files Browse the repository at this point in the history
  • Loading branch information
mattlewis92 committed Jun 13, 2018
1 parent c788300 commit 7e35137
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/modules/calendar.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class CalendarModule {
dateAdapter,
config.eventTitleFormatter || CalendarEventTitleFormatter,
config.dateFormatter || CalendarDateFormatter,
config.calendarUtils || CalendarUtils
config.utils || CalendarUtils
]
};
}
Expand Down
4 changes: 2 additions & 2 deletions src/modules/common/calendar-common.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { CalendarUtils } from './calendar-utils.provider';
export interface CalendarModuleConfig {
eventTitleFormatter?: Provider;
dateFormatter?: Provider;
calendarUtils?: Provider;
utils?: Provider;
}

export * from './calendar-event-title-formatter.provider';
Expand Down Expand Up @@ -95,7 +95,7 @@ export class CalendarCommonModule {
dateAdapter,
config.eventTitleFormatter || CalendarEventTitleFormatter,
config.dateFormatter || CalendarDateFormatter,
config.calendarUtils || CalendarUtils
config.utils || CalendarUtils
]
};
}
Expand Down

0 comments on commit 7e35137

Please sign in to comment.