aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/textarea/index.tsx
diff options
context:
space:
mode:
authorLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-04-23 06:52:24 -0500
committerLibravatar GitHub <noreply@github.com>2022-04-23 11:52:24 +0000
commit0c322a7a4ce2474be69a70823ba5f1ea83162e9c (patch)
tree325040af714bb70067c25662392babc7d3e23108 /src/components/ui/textarea/index.tsx
parentUpdate the build script for Windows (Powershell) and normalized with the unix... (diff)
downloadferdium-app-0c322a7a4ce2474be69a70823ba5f1ea83162e9c.tar.gz
ferdium-app-0c322a7a4ce2474be69a70823ba5f1ea83162e9c.tar.zst
ferdium-app-0c322a7a4ce2474be69a70823ba5f1ea83162e9c.zip
Update node modules (#31)
* Suppress eslint rules as warnings (dont turn off completely)
Diffstat (limited to 'src/components/ui/textarea/index.tsx')
-rw-r--r--src/components/ui/textarea/index.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/components/ui/textarea/index.tsx b/src/components/ui/textarea/index.tsx
index a47465806..34ec4cf4b 100644
--- a/src/components/ui/textarea/index.tsx
+++ b/src/components/ui/textarea/index.tsx
@@ -18,14 +18,12 @@ interface IProps
18 extends TextareaHTMLAttributes<HTMLTextAreaElement>, 18 extends TextareaHTMLAttributes<HTMLTextAreaElement>,
19 IFormField, 19 IFormField,
20 WithStylesProps<typeof styles> { 20 WithStylesProps<typeof styles> {
21 focus?: boolean;
22 data: IData; 21 data: IData;
23 textareaClassName?: string; 22 textareaClassName?: string;
24} 23}
25 24
26class TextareaComponent extends Component<IProps> { 25class TextareaComponent extends Component<IProps> {
27 static defaultProps = { 26 static defaultProps = {
28 focus: false,
29 onChange: () => {}, 27 onChange: () => {},
30 onBlur: () => {}, 28 onBlur: () => {},
31 onFocus: () => {}, 29 onFocus: () => {},