Skip to content

Commit 6074272

Browse files
authored
Fix missing tab controller (#184)
1 parent 70ef8c0 commit 6074272

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

current_results_ui/lib/results.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class ResultsPanel extends StatelessWidget {
3939
}
4040

4141
final counts = queryResults.counts;
42-
final tabController = DefaultTabController.of(context);
42+
final tabController = Provider.of<TabController>(context);
4343

4444
bool isFailed(String name) => counts[name]!.countFailing > 0;
4545
bool isFlaky(String name) => counts[name]!.countFlaky > 0;

0 commit comments

Comments
 (0)