From adb85552392a8650e0bb3e696f3ffbef5684168e Mon Sep 17 00:00:00 2001 From: Jari Kolehmainen Date: Wed, 24 Jun 2020 13:38:01 +0300 Subject: [PATCH] fix lint fix regression Signed-off-by: Jari Kolehmainen --- src/renderer/components/input/input.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/renderer/components/input/input.tsx b/src/renderer/components/input/input.tsx index 4b4363f307..86e4bc09a7 100644 --- a/src/renderer/components/input/input.tsx +++ b/src/renderer/components/input/input.tsx @@ -243,8 +243,10 @@ export class Input extends React.Component { } render() { - const { multiLine, showValidationLine, validators, theme, maxRows, children, maxLength, rows, disabled, ...inputProps } = this.props; - let { className, iconLeft, iconRight } = this.props; + /* eslint-disable */ + let { multiLine, showValidationLine, validators, theme, maxRows, children, iconLeft, iconRight, ...inputProps } = this.props; + let { className, maxLength, rows, disabled, } = this.props; + /* eslint-enable */ const { focused, dirty, valid, validating, errors } = this.state; className = cssNames("Input", className, {