Change caption of buttons from "Issue" to "Bug"

Sascha created

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

webui/src/components/CloseBugButton/CloseBugButton.tsx 🔗

@@ -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>
   );

webui/src/pages/new/NewBugPage.tsx 🔗

@@ -94,7 +94,7 @@ function NewBugPage() {
             type="submit"
             disabled={isFormValid() ? false : true}
           >
-            Submit new issue
+            Submit new bug
           </Button>
         </div>
       </form>