From 6dd7cfa1ecd3ab95e4ab50e144762e5dceb03328 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Sat, 30 Dec 2023 20:19:47 -0300 Subject: abs time --- .../src/handlers/InputChoiceStacked.stories.tsx | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'packages/aml-backoffice-ui/src/handlers/InputChoiceStacked.stories.tsx') diff --git a/packages/aml-backoffice-ui/src/handlers/InputChoiceStacked.stories.tsx b/packages/aml-backoffice-ui/src/handlers/InputChoiceStacked.stories.tsx index bd21687bb..215418430 100644 --- a/packages/aml-backoffice-ui/src/handlers/InputChoiceStacked.stories.tsx +++ b/packages/aml-backoffice-ui/src/handlers/InputChoiceStacked.stories.tsx @@ -47,10 +47,20 @@ const form: FlexibleForm = { design: [{ title: "this is a simple form" as TranslatedString, fields: [{ - type: "text", + type: "choiceStacked", props: { label: "label of the field" as TranslatedString, name: "comment", + choices: [{ + label: "first choice" as TranslatedString, + value: "1" + }, { + label: "second choice" as TranslatedString, + value: "2" + }, { + label: "thrid choice" as TranslatedString, + value: "3" + },], }, }] }] -- cgit v1.2.3