Skip to content

Commit

Permalink
Merge pull request #46 from open-formulieren/future/483-description-p…
Browse files Browse the repository at this point in the history
…er-option

✨ [#483] add type description to option and translation
  • Loading branch information
sergei-maertens authored Mar 11, 2024
2 parents 2800feb + 0c6ef64 commit 4aebf0f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/formio/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ import {ComponentTranslations} from './i18n';
export interface Option {
value: string;
label: string;
description?: string;
openForms?: {
translations: ComponentTranslations<'label'>;
translations: ComponentTranslations<'label' | 'description'>;
};
}

Expand Down

0 comments on commit 4aebf0f

Please sign in to comment.