aboutsummaryrefslogtreecommitdiff
path: root/packages/exchange-backoffice-ui/src/forms/InputChoice.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-05-10 15:01:56 -0300
committerSebastian <sebasjm@gmail.com>2023-05-10 15:01:56 -0300
commit55a1e8c6e1ab34702525aadf18b1acce2d06e616 (patch)
treedf430fee9ba715fc64c342052b43c1b66a532cd7 /packages/exchange-backoffice-ui/src/forms/InputChoice.tsx
parentf281803f1e555b8e8c1e76612b1f6b7128033cd6 (diff)
fix form
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);
}}