Skip to content

Commit

Permalink
Make rows optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Viicos authored Nov 22, 2023
1 parent ed6fd2e commit 120dea1
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 120dea1

Please sign in to comment.