Skip to content

Commit 921e219

Browse files
authored
Merge pull request dart-league#102 from zarisi/fix_dart2js
fix const providers
2 parents 7ec9c66 + a1bea82 commit 921e219

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/components/datepicker/month_picker.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ part of bs_date_picker;
55
@Component (selector: "bs-month-picker",
66
templateUrl: 'month_picker.html',
77
directives: const [coreDirectives],
8-
providers: [BsDatePickerComponent])
8+
providers: const [BsDatePickerComponent])
99
class BsMonthPickerComponent {
1010
/// parent [BsDatePickerInnerComponent]
1111
BsDatePickerComponent datePicker;

lib/components/datepicker/year_picker.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ part of bs_date_picker;
55
@Component (selector: "bs-year-picker",
66
templateUrl: 'year_picker.html',
77
directives: const [coreDirectives],
8-
providers: [BsDatePickerComponent])
8+
providers: const [BsDatePickerComponent])
99
class BsYearPickerComponent {
1010
/// container of the date-picker
1111
BsDatePickerComponent datePicker;

0 commit comments

Comments
 (0)