We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f31115a commit 0bcc22aCopy full SHA for 0bcc22a
app/components/FormUtils/ControlInput.jsx
@@ -11,7 +11,7 @@ export default props => {
11
} = props
12
13
return (
14
- <p className={classNames('control', { 'has-icon': icon })}>
+ <p className={classNames('control', { 'has-icons': icon })}>
15
<Input {...props} />
16
{icon && <Icon size="small" name={icon} />}
17
{touched && (error && <span className="help is-danger">{error}</span>)}
app/components/FormUtils/ControlTextarea.jsx
@@ -32,7 +32,7 @@ export default params => {
32
)
33
34
35
- <p className={classNames('control', { 'has-icon': !!icon })}>
+ <p className={classNames('control', { 'has-icons': !!icon })}>
36
{textarea}
37
<TextareaLengthCounter length={input.value.length} maxLength={maxLength} />
38
{hasError && <span className="help is-danger">{error}</span>}
0 commit comments