<div className={wrapperClassName}>
<h1 tabIndex={focusable ? 0 : null} role='button' className={buttonClassName} aria-label={title} onClick={this.handleTitleClick}>
<i className={`fa fa-fw fa-${icon} column-header__icon`} />
- {title}
+ <span className='column-header__title'>
+ {title}
+ </span>
-
<div className='column-header__buttons'>
{backButton}
+ { notifCleaning ? (
+ <button
+ aria-label={msgEnterNotifCleaning}
+ title={msgEnterNotifCleaning}
+ onClick={this.onEnterCleaningMode}
+ className={notifCleaningButtonClassName}
+ >
+ <i className='fa fa-eraser' />
+ </button>
+ ) : null}
{collapseButton}
</div>
</h1>