aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/components/ReopenBugButton/ReopenBugButton.tsx
diff options
context:
space:
mode:
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) {