Skip to content

Commit

Permalink
Merge branch 'develop' into service-units-2
Browse files Browse the repository at this point in the history
  • Loading branch information
NC-jsAhonen committed Oct 16, 2023
2 parents 93c2d8d + 35e15e0 commit ab4c64a
Show file tree
Hide file tree
Showing 25 changed files with 1,978 additions and 575 deletions.
14 changes: 13 additions & 1 deletion src/application/types.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ export type FormSection = {
id: number;
identifier: string;
title: string;
title_fi: string;
title_en: string | null;
title_sv: string | null;
visible: boolean;
sort_order: number;
add_new_allowed: boolean;
Expand All @@ -50,7 +53,13 @@ export type FormField = {
identifier: string;
type: number;
label: string;
hint_text?: string;
label_fi: string;
label_en: string | null;
label_sv: string | null;
hint_text: string | null;
hint_text_fi: string | null;
hint_text_en: string | null;
hint_text_sv: string | null;
enabled: boolean;
required: boolean;
validation?: string | null;
Expand All @@ -64,6 +73,9 @@ export type FormField = {
export type FormFieldChoice = {
id: number;
text: string;
text_fi: string;
text_en: string | null;
text_sv: string | null;
value: string;
action?: string | null;
has_text_input: boolean;
Expand Down
Loading

0 comments on commit ab4c64a

Please sign in to comment.