Skip to content

Commit

Permalink
[Parent][RC 3.2] Hotfix changes (#755)
Browse files Browse the repository at this point in the history
  • Loading branch information
TrevorNeedham authored Apr 23, 2020
1 parent ae4ff58 commit 4efa7cd
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion apps/flutter_parent/lib/models/grading_period.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ abstract class GradingPeriod implements Built<GradingPeriod, GradingPeriodBuilde
DateTime get endDate;

@nullable
int get weight;
double get weight;
}
12 changes: 6 additions & 6 deletions apps/flutter_parent/lib/models/grading_period.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class StudentHorizontalListViewState extends State<StudentHorizontalListView> {
onPressed: () async {
locator<Analytics>().logEvent(AnalyticsEventConstants.ADD_STUDENT_DASHBOARD);
bool studentPaired = await _addStudentDialog(context);
if (studentPaired) {
if (studentPaired == true) {
widget.onAddStudent();
}
},
Expand Down
2 changes: 1 addition & 1 deletion apps/flutter_parent/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ description: Canvas Parent
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 3.2.0+30
version: 3.2.0+31

module:
androidX: true
Expand Down

0 comments on commit 4efa7cd

Please sign in to comment.