Change summary
webui/src/components/BugTitleForm/BugTitleForm.tsx | 2 +-
webui/src/components/CloseBugButton/CloseBugButton.tsx | 2 +-
webui/src/components/ReopenBugButton/ReopenBugButton.tsx | 2 +-
webui/src/pages/list/ListQuery.tsx | 2 +-
webui/src/pages/new/NewBugPage.tsx | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
Detailed changes
@@ -159,7 +159,7 @@ function BugTitleForm({ bug }: Props) {
variant="contained"
href="/new"
>
- New issue
+ New bug
</Button>
</div>
)}
@@ -57,7 +57,7 @@ function CloseBugButton({ bug, disabled }: Props) {
disabled={bug.status === 'CLOSED' || disabled}
startIcon={<ErrorOutlineIcon className={classes.closeIssueIcon} />}
>
- Close issue
+ Close bug
</Button>
</div>
);
@@ -46,7 +46,7 @@ function ReopenBugButton({ bug, disabled }: Props) {
onClick={() => openBugAction()}
disabled={bug.status === 'OPEN' || disabled}
>
- Reopen issue
+ Reopen bug
</Button>
</div>
);
@@ -323,7 +323,7 @@ function ListQuery() {
variant="contained"
href="/new"
>
- New issue
+ New bug
</Button>
)}
</IfLoggedIn>
@@ -94,7 +94,7 @@ function NewBugPage() {
type="submit"
disabled={isFormValid() ? false : true}
>
- Submit new issue
+ Submit new bug
</Button>
</div>
</form>