aboutsummaryrefslogtreecommitdiff
path: root/packages/web-util/src/forms/ui-form.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/web-util/src/forms/ui-form.ts')
-rw-r--r--packages/web-util/src/forms/ui-form.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/web-util/src/forms/ui-form.ts b/packages/web-util/src/forms/ui-form.ts
index 212efd506..ef9ad96e1 100644
--- a/packages/web-util/src/forms/ui-form.ts
+++ b/packages/web-util/src/forms/ui-form.ts
@@ -166,7 +166,7 @@ export type UIFieldBaseDescription = {
/* name of the field, useful for a11y */
name: string;
- /* if the field should be initialy hidden */
+ /* if the field should be initially hidden */
hidden?: boolean;
/* ui element to show before */
addonBeforeId?: string;
@@ -184,7 +184,7 @@ export type UIFormFieldBaseConfig = UIFieldBaseDescription & {
/* readonly and dim */
disabled?: boolean;
- /* conversion id to conver the string into the value type
+ /* conversion id to convert the string into the value type
the id should be known to the ui impl
*/
converterId?: string;