Skip to content

Commit

Permalink
Add some spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
omar-selo committed Jul 3, 2023
1 parent 2b161a0 commit 13eb642
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/lib/ui/dashboard/artefact_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class _ArtefactInfoSection extends StatelessWidget {
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: TestExecutionStatus.values
.map(
.map<Widget>(
(status) => Row(
children: [
status.icon,
Expand All @@ -118,6 +118,8 @@ class _ArtefactInfoSection extends StatelessWidget {
],
),
)
.toList()
.intersperse(const SizedBox(height: Spacing.level2))
.toList(),
),
],
Expand Down

0 comments on commit 13eb642

Please sign in to comment.