We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dad204f commit a338cacCopy full SHA for a338cac
1 file changed
src/components/TextField/TextArea.tsx
@@ -91,7 +91,7 @@ export const TextArea = ({
91
leftIconElementRect.width ?? 0
92
}px)`
93
);
94
- leftIconElement.addEventListener("click", (_event: MouseEvent) => {
+ leftIconElement.addEventListener("click", () => {
95
textAreaElement.focus();
96
});
97
}
@@ -157,7 +157,7 @@ export const TextArea = ({
157
rows={
158
rows && !otherBlueprintTextAreaProps.autoResize && !otherBlueprintTextAreaProps.growVertically
159
? rows
160
- : 1
+ : 2
161
162
{...otherBlueprintTextAreaProps}
163
dir={"auto"}
0 commit comments