Skip to content

Commit

Permalink
fix(dep): upgrade to flutter 3.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesvedder committed Jan 27, 2023
1 parent 1e21b73 commit 2aa8001
Show file tree
Hide file tree
Showing 10 changed files with 1,073 additions and 603 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: subosito/flutter-action@v1
uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: stable
- name: Enable web support
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,12 @@ class LinearRegressionSectionWidget extends ReportSectionWidget {
text = AppLocalizations.of(context).report_outcome_neither;
} else if (factorA > factorB) {
//TODO: This if else might be problematic if a baseline is present and A and B are an improvement over it
text = AppLocalizations.of(context)
.report_outcome_one
text = (AppLocalizations.of(context)
.report_outcome_one as String)
.replaceAll('{intervention}', interventionNames[interventionA]);
} else {
text = AppLocalizations.of(context)
.report_outcome_one
text = (AppLocalizations.of(context)
.report_outcome_one as String)
.replaceAll('{intervention}', interventionNames[interventionB]);
}

Expand Down
Loading

0 comments on commit 2aa8001

Please sign in to comment.