aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/components/ReopenBugButton/ReopenBugButton.tsx
diff options
context:
space:
mode:
authorSascha <GlancingMind@outlook.com>2021-05-25 17:20:36 +0200
committerSascha <GlancingMind@outlook.com>2021-05-26 12:52:07 +0200
commit6f6831e18d08773540a4c897866985c0bf950de5 (patch)
tree1429892b6f3da035dc0dacc38d2507d26f3fea97 /webui/src/components/ReopenBugButton/ReopenBugButton.tsx
parent27b5285b8cbccec7fb6d17fb2c765d45530605c2 (diff)
downloadgit-bug-6f6831e18d08773540a4c897866985c0bf950de5.tar.gz
WebUI: Add comment-and-reopen of a bug in one step
Diffstat (limited to 'webui/src/components/ReopenBugButton/ReopenBugButton.tsx')
-rw-r--r--webui/src/components/ReopenBugButton/ReopenBugButton.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webui/src/components/ReopenBugButton/ReopenBugButton.tsx b/webui/src/components/ReopenBugButton/ReopenBugButton.tsx
index e3e792fc..c9999ec1 100644
--- a/webui/src/components/ReopenBugButton/ReopenBugButton.tsx
+++ b/webui/src/components/ReopenBugButton/ReopenBugButton.tsx
@@ -9,7 +9,7 @@ import { useOpenBugMutation } from './OpenBug.generated';
interface Props {
bug: BugFragment;
- disabled: boolean;
+ disabled?: boolean;
}
function ReopenBugButton({ bug, disabled }: Props) {