From fb7737b338f89182b10876f0d52596491e520604 Mon Sep 17 00:00:00 2001 From: Jukka Ahonen Date: Tue, 12 Nov 2024 13:53:44 +0200 Subject: [PATCH] field choice type: add sort_order --- src/application/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/application/types.ts b/src/application/types.ts index dfaf0e240..7f89fc0cb 100644 --- a/src/application/types.ts +++ b/src/application/types.ts @@ -72,6 +72,7 @@ export type FormFieldChoice = { value: string; action?: string | null; has_text_input: boolean; + sort_order: number; }; export type SectionExtraComponentProps = { section: FormSection;