Skip to content

Commit

Permalink
Distinguish environment and test issues to avoid confusion (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
omar-selo authored Sep 18, 2024
1 parent d877415 commit 80a94c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class EnvironmentIssuesExpandable extends ConsumerWidget {
initiallyExpanded: issues.isNotEmpty,
title: Row(
children: [
Text('Reported Issues (${issues.length})'),
Text('Reported Environment Issues (${issues.length})'),
const Spacer(),
TextButton(
onPressed: () => showEnvironmentIssueCreateDialog(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class TestIssuesExpandable extends ConsumerWidget {
initiallyExpanded: issues.isNotEmpty,
title: Row(
children: [
Text('Reported Issues (${issues.length})'),
Text('Reported Test Issues (${issues.length})'),
const Spacer(),
TextButton(
onPressed: () => showTestIssueCreateDialog(
Expand Down

0 comments on commit 80a94c1

Please sign in to comment.