1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

fix lint fix regression

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2020-06-24 13:38:01 +03:00
parent 6852388145
commit adb8555239

View File

@ -243,8 +243,10 @@ export class Input extends React.Component<InputProps, State> {
} }
render() { render() {
const { multiLine, showValidationLine, validators, theme, maxRows, children, maxLength, rows, disabled, ...inputProps } = this.props; /* eslint-disable */
let { className, iconLeft, iconRight } = this.props; 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; const { focused, dirty, valid, validating, errors } = this.state;
className = cssNames("Input", className, { className = cssNames("Input", className, {