Skip to content

Commit

Permalink
Merge pull request #28 from open-formulieren/Viicos-patch-1
Browse files Browse the repository at this point in the history
Make `rows` optional
  • Loading branch information
sergei-maertens authored Nov 22, 2023
2 parents ed6fd2e + 120dea1 commit c0fa9d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/formio/components/textarea.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export interface BaseTextareaComponentSchema extends Omit<TextareaInputSchema, '
// additional properties
showCharCount?: boolean;
autocomplete?: string;
rows: number;
rows?: number;
autoExpand: boolean;
}

Expand Down

0 comments on commit c0fa9d6

Please sign in to comment.