aboutsummaryrefslogtreecommitdiff
path: root/packages/exchange-backoffice-ui/src/forms/InputChoice.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/exchange-backoffice-ui/src/forms/InputChoice.tsx')
-rw-r--r--packages/exchange-backoffice-ui/src/forms/InputChoice.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/exchange-backoffice-ui/src/forms/InputChoice.tsx b/packages/exchange-backoffice-ui/src/forms/InputChoice.tsx
index dae5ff34a..0e1b32cba 100644
--- a/packages/exchange-backoffice-ui/src/forms/InputChoice.tsx
+++ b/packages/exchange-backoffice-ui/src/forms/InputChoice.tsx
@@ -43,7 +43,7 @@ export function InputChoiceStacked(
}
return (
- <div class="sm:col-span-4">
+ <div class="sm:col-span-6">
<LabelWithTooltipMaybeRequired
label={label}
required={required}
@@ -81,7 +81,7 @@ export function InputChoiceStacked(
<input
type="radio"
name="server-size"
- value={choice.value}
+ defaultValue={choice.value}
onClick={(e) => {
onChange(choice.value);
}}