|
|
@ -557,7 +557,7 @@ class Status extends ImmutablePureComponent {
|
|
|
|
showBackButton
|
|
|
|
showBackButton
|
|
|
|
multiColumn={multiColumn}
|
|
|
|
multiColumn={multiColumn}
|
|
|
|
extraButton={(
|
|
|
|
extraButton={(
|
|
|
|
<button className='column-header__button' title={intl.formatMessage(!isExpanded ? messages.revealAll : messages.hideAll)} aria-label={intl.formatMessage(!isExpanded ? messages.revealAll : messages.hideAll)} onClick={this.handleToggleAll} aria-pressed={!isExpanded ? 'false' : 'true'}><Icon id={status.get('hidden') ? 'eye-slash' : 'eye'} /></button>
|
|
|
|
<button className='column-header__button' title={intl.formatMessage(!isExpanded ? messages.revealAll : messages.hideAll)} aria-label={intl.formatMessage(!isExpanded ? messages.revealAll : messages.hideAll)} onClick={this.handleToggleAll} aria-pressed={!isExpanded ? 'false' : 'true'}><Icon id={!isExpanded ? 'eye-slash' : 'eye'} /></button>
|
|
|
|
)}
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
@ -566,7 +566,7 @@ class Status extends ImmutablePureComponent {
|
|
|
|
{ancestors}
|
|
|
|
{ancestors}
|
|
|
|
|
|
|
|
|
|
|
|
<HotKeys handlers={handlers}>
|
|
|
|
<HotKeys handlers={handlers}>
|
|
|
|
<div className='focusable' tabIndex='0' aria-label={textForScreenReader(intl, status, false, !status.get('hidden'))}>
|
|
|
|
<div className='focusable' tabIndex='0' aria-label={textForScreenReader(intl, status, false, isExpanded)}>
|
|
|
|
<DetailedStatus
|
|
|
|
<DetailedStatus
|
|
|
|
key={`details-${status.get('id')}`}
|
|
|
|
key={`details-${status.get('id')}`}
|
|
|
|
status={status}
|
|
|
|
status={status}
|
|
|
|