aboutsummaryrefslogtreecommitdiffstats
path: root/packages/forms/src/input
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-02-06 20:28:15 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-02-06 20:28:15 +0100
commit14b151cad6a5a849bb476aaa3fc53bf1eead7f4b (patch)
tree8daa38d28fe21e1745093962526dd36744be4274 /packages/forms/src/input
parentupdate versions (diff)
downloadferdium-app-14b151cad6a5a849bb476aaa3fc53bf1eead7f4b.tar.gz
ferdium-app-14b151cad6a5a849bb476aaa3fc53bf1eead7f4b.tar.zst
ferdium-app-14b151cad6a5a849bb476aaa3fc53bf1eead7f4b.zip
cleanup
Diffstat (limited to 'packages/forms/src/input')
-rw-r--r--packages/forms/src/input/index.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/forms/src/input/index.tsx b/packages/forms/src/input/index.tsx
index cd6da3778..de7e7848e 100644
--- a/packages/forms/src/input/index.tsx
+++ b/packages/forms/src/input/index.tsx
@@ -1,7 +1,6 @@
1import { mdiEye, mdiEyeOff } from '@mdi/js'; 1import { mdiEye, mdiEyeOff } from '@mdi/js';
2import Icon from '@mdi/react'; 2import Icon from '@mdi/react';
3import classnames from 'classnames'; 3import classnames from 'classnames';
4import { observer } from 'mobx-react';
5import React, { Component, createRef } from 'react'; 4import React, { Component, createRef } from 'react';
6import injectSheet from 'react-jss'; 5import injectSheet from 'react-jss';
7 6
@@ -33,7 +32,6 @@ interface IState {
33 passwordScore: number; 32 passwordScore: number;
34} 33}
35 34
36@observer
37class InputComponent extends Component<IProps, IState> { 35class InputComponent extends Component<IProps, IState> {
38 public static defaultProps = { 36 public static defaultProps = {
39 focus: false, 37 focus: false,
@@ -114,6 +112,7 @@ class InputComponent extends Component<IProps, IState> {
114 return ( 112 return (
115 <Wrapper 113 <Wrapper
116 className={className} 114 className={className}
115 identifier="franz-input"
117 > 116 >
118 <Label 117 <Label
119 title={label} 118 title={label}