aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorLibravatar Dominik Guzei <dominik.guzei@gmail.com>2019-02-26 13:31:12 +0100
committerLibravatar Dominik Guzei <dominik.guzei@gmail.com>2019-02-26 13:31:12 +0100
commita761f7cf596353b7ea21fced7b598b1ec44f9c50 (patch)
tree7b3a78a3e000ecf110fc80d8e8ceb80a5bb1417b /packages
parentfix merge conflict (diff)
downloadferdium-app-a761f7cf596353b7ea21fced7b598b1ec44f9c50.tar.gz
ferdium-app-a761f7cf596353b7ea21fced7b598b1ec44f9c50.tar.zst
ferdium-app-a761f7cf596353b7ea21fced7b598b1ec44f9c50.zip
fix bug in form input library
Diffstat (limited to 'packages')
-rw-r--r--packages/forms/src/input/index.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/forms/src/input/index.tsx b/packages/forms/src/input/index.tsx
index 6be29e6e5..cc3709b1a 100644
--- a/packages/forms/src/input/index.tsx
+++ b/packages/forms/src/input/index.tsx
@@ -147,7 +147,7 @@ class InputComponent extends Component<IProps, IState> {
147 id={id} 147 id={id}
148 type={inputType} 148 type={inputType}
149 name={name} 149 name={name}
150 defaultValue={value as string} 150 value={value as string}
151 placeholder={placeholder} 151 placeholder={placeholder}
152 spellCheck={spellCheck} 152 spellCheck={spellCheck}
153 className={classes.input} 153 className={classes.input}