Skip to content

Commit bafec47

Browse files
committed
Decrasing the number of rows to better fit sample frame
1 parent 685948a commit bafec47

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

samples/inputs/textarea/form-integration/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default class TextAreaFormIntegration extends React.Component<any, any> {
2222
return (
2323
<div className="sample">
2424
<form id="form" onSubmit={this.onSubmitButtonClicked}>
25-
<IgrTextarea rows="5" name="user_feedback" label="Your review" required>
25+
<IgrTextarea rows="3" name="user_feedback" label="Your review" required>
2626
</IgrTextarea>
2727
<div className="controls">
2828
<IgrButton type="submit"><span>Submit review</span></IgrButton>

samples/inputs/textarea/overview/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default class TextAreaOverview extends React.Component<any, any> {
1515
public render(): JSX.Element {
1616
return (
1717
<div className="sample">
18-
<IgrTextarea rows="5" label="Tell us your story:"><span>It was a dark and stormy night...</span></IgrTextarea>
18+
<IgrTextarea rows="3" label="Tell us your story:"><span>It was a dark and stormy night...</span></IgrTextarea>
1919
</div>
2020
);
2121
}

0 commit comments

Comments
 (0)