Skip to content

Commit

Permalink
Change rerun button order (#176)
Browse files Browse the repository at this point in the history
* Change rerun button order

* Restore spacing
  • Loading branch information
andrejvelichkovski authored May 8, 2024
1 parent 5cc1685 commit 45cbde1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/lib/ui/artefact_page/test_execution_expandable.dart
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ class _TestExecutionTileTitle extends StatelessWidget {
children: [
if (!testExecution.status.isCompleted) const SizedBox(width: 36.0),
testExecution.status.icon,
const SizedBox(width: Spacing.level2),
_RerunButton(testExecution: testExecution),
const SizedBox(width: Spacing.level2),
const SizedBox(width: Spacing.level4),
Text(
testExecution.environment.name,
style: Theme.of(context).textTheme.titleLarge,
),
const Spacer(),
_RerunButton(testExecution: testExecution),
const SizedBox(width: Spacing.level3),
TestExecutionReviewButton(testExecution: testExecution),
const SizedBox(width: Spacing.level4),
if (ciLink != null)
Expand Down

0 comments on commit 45cbde1

Please sign in to comment.