From 5fb465802ba60ebb1e6782f1dc9d67a114947cbf Mon Sep 17 00:00:00 2001 From: Alex Andreev Date: Thu, 27 Jan 2022 15:05:26 +0300 Subject: [PATCH] Do not pass blurOnEnter to html element (#4762) Signed-off-by: Alex Andreev --- src/renderer/components/input/input.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/renderer/components/input/input.tsx b/src/renderer/components/input/input.tsx index 36461fd684..9e961201b4 100644 --- a/src/renderer/components/input/input.tsx +++ b/src/renderer/components/input/input.tsx @@ -353,6 +353,7 @@ export class Input extends React.Component { dirty: _dirty, // excluded from passing to input-element defaultValue, trim, + blurOnEnter, ...inputProps } = this.props; const { focused, dirty, valid, validating, errors } = this.state;