diff --git a/frontend/lib/ui/artefact_page/environment_expandable.dart b/frontend/lib/ui/artefact_page/environment_expandable.dart index cbd2b014..d06ea0f5 100644 --- a/frontend/lib/ui/artefact_page/environment_expandable.dart +++ b/frontend/lib/ui/artefact_page/environment_expandable.dart @@ -25,6 +25,7 @@ class EnvironmentExpandable extends StatelessWidget { ), ...artefactEnvironment.runsDescending.mapIndexed( (i, te) => TestExecutionExpandable( + initiallyExpanded: i == 0, testExecution: te, runNumber: artefactEnvironment.runsDescending.length - i, ), diff --git a/frontend/lib/ui/artefact_page/test_execution_expandable/test_execution_expandable.dart b/frontend/lib/ui/artefact_page/test_execution_expandable/test_execution_expandable.dart index d04e58a2..c7651fdf 100644 --- a/frontend/lib/ui/artefact_page/test_execution_expandable/test_execution_expandable.dart +++ b/frontend/lib/ui/artefact_page/test_execution_expandable/test_execution_expandable.dart @@ -15,14 +15,17 @@ class TestExecutionExpandable extends ConsumerWidget { super.key, required this.testExecution, required this.runNumber, + this.initiallyExpanded = false, }); final TestExecution testExecution; final int runNumber; + final bool initiallyExpanded; @override Widget build(BuildContext context, WidgetRef ref) { return Expandable( + initiallyExpanded: initiallyExpanded, title: _TestExecutionTileTitle( testExecution: testExecution, runNumber: runNumber,