diff options
author | Sascha <GlancingMind@outlook.com> | 2021-03-14 16:10:01 +0100 |
---|---|---|
committer | Sascha <GlancingMind@outlook.com> | 2021-03-14 16:34:25 +0100 |
commit | 2c5d3345e2d3b4746619f3adf859321eadf21992 (patch) | |
tree | 99b8665aaee65d0e7268ff0c72b04403182852b4 /webui/src/components/ReopenBugButton | |
parent | d0505e2f9ab9483f370ba547cb93ce6cc388f241 (diff) | |
download | git-bug-2c5d3345e2d3b4746619f3adf859321eadf21992.tar.gz |
Change caption of buttons from "Issue" to "Bug"
Diffstat (limited to 'webui/src/components/ReopenBugButton')
-rw-r--r-- | webui/src/components/ReopenBugButton/ReopenBugButton.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webui/src/components/ReopenBugButton/ReopenBugButton.tsx b/webui/src/components/ReopenBugButton/ReopenBugButton.tsx index 195ca512..e3e792fc 100644 --- a/webui/src/components/ReopenBugButton/ReopenBugButton.tsx +++ b/webui/src/components/ReopenBugButton/ReopenBugButton.tsx @@ -46,7 +46,7 @@ function ReopenBugButton({ bug, disabled }: Props) { onClick={() => openBugAction()} disabled={bug.status === 'OPEN' || disabled} > - Reopen issue + Reopen bug </Button> </div> ); |