Skip to content

Commit e974b21

Browse files
committed
fix(bulma): rename has-icon to has-icons-left
1 parent f31115a commit e974b21

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/components/FormUtils/ControlInput.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default props => {
1111
} = props
1212

1313
return (
14-
<p className={classNames('control', { 'has-icon': icon })}>
14+
<p className={classNames('control', { 'has-icons-left': icon })}>
1515
<Input {...props} />
1616
{icon && <Icon size="small" name={icon} />}
1717
{touched && (error && <span className="help is-danger">{error}</span>)}

app/components/FormUtils/ControlTextarea.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default params => {
3232
)
3333

3434
return (
35-
<p className={classNames('control', { 'has-icon': !!icon })}>
35+
<p className={classNames('control', { 'has-icons-left': !!icon })}>
3636
{textarea}
3737
<TextareaLengthCounter length={input.value.length} maxLength={maxLength} />
3838
{hasError && <span className="help is-danger">{error}</span>}

0 commit comments

Comments
 (0)