Use classnames instead for getting conditional className
[MAILPOET-2455]
This commit is contained in:
committed by
Jack Kitterhing
parent
2e3b7cc14b
commit
74d00145be
@@ -9,6 +9,7 @@ import {
|
||||
import { useDispatch, useSelect } from '@wordpress/data';
|
||||
import React from 'react';
|
||||
import MailPoet from 'mailpoet';
|
||||
import classnames from 'classnames';
|
||||
import Selection from '../../../form/fields/selection.jsx';
|
||||
|
||||
export default () => {
|
||||
@@ -70,7 +71,7 @@ export default () => {
|
||||
<PanelBody title={MailPoet.I18n.t('formSettings')}>
|
||||
<BaseControl
|
||||
label={MailPoet.I18n.t('settingsListLabel')}
|
||||
className={shouldDisplayMissingListError ? 'mailpoet-form-missing-lists' : null}
|
||||
className={classnames({ 'mailpoet-form-missing-lists': shouldDisplayMissingListError })}
|
||||
>
|
||||
{shouldDisplayMissingListError ? (
|
||||
<span className="mailpoet-form-lists-error">{MailPoet.I18n.t('settingsPleaseSelectList')}</span>
|
||||
|
Reference in New Issue
Block a user