aboutsummaryrefslogtreecommitdiffstats
path: root/packages/forms/src/input/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/forms/src/input/index.tsx')
-rw-r--r--packages/forms/src/input/index.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/forms/src/input/index.tsx b/packages/forms/src/input/index.tsx
index a2d7c62d5..b96dbc12d 100644
--- a/packages/forms/src/input/index.tsx
+++ b/packages/forms/src/input/index.tsx
@@ -83,7 +83,7 @@ class InputComponent extends Component<IProps, IState> {
83 } 83 }
84 84
85 onInputKeyPress(e: React.KeyboardEvent) { 85 onInputKeyPress(e: React.KeyboardEvent) {
86 if (e.key === "Enter") { 86 if (e.key === 'Enter') {
87 const { onEnterKey } = this.props; 87 const { onEnterKey } = this.props;
88 onEnterKey && onEnterKey(); 88 onEnterKey && onEnterKey();
89 } 89 }
@@ -114,6 +114,7 @@ class InputComponent extends Component<IProps, IState> {
114 max, 114 max,
115 step, 115 step,
116 required, 116 required,
117 noMargin,
117 } = this.props; 118 } = this.props;
118 119
119 const { 120 const {
@@ -127,6 +128,7 @@ class InputComponent extends Component<IProps, IState> {
127 <Wrapper 128 <Wrapper
128 className={className} 129 className={className}
129 identifier="franz-input" 130 identifier="franz-input"
131 noMargin={noMargin}
130 > 132 >
131 <Label 133 <Label
132 title={label} 134 title={label}