Use an AccessibleButton for the clickable element

pull/21833/head
Travis Ralston 2019-03-27 13:14:31 -06:00
parent 5ac3905a37
commit c94ae6401b
1 changed files with 4 additions and 2 deletions

View File

@ -52,6 +52,7 @@ import RoomScrollStateStore from '../../stores/RoomScrollStateStore';
import WidgetEchoStore from '../../stores/WidgetEchoStore'; import WidgetEchoStore from '../../stores/WidgetEchoStore';
import SettingsStore, {SettingLevel} from "../../settings/SettingsStore"; import SettingsStore, {SettingLevel} from "../../settings/SettingsStore";
import WidgetUtils from '../../utils/WidgetUtils'; import WidgetUtils from '../../utils/WidgetUtils';
import AccessibleButton from "../views/elements/AccessibleButton";
const DEBUG = false; const DEBUG = false;
let debuglog = function() {}; let debuglog = function() {};
@ -1736,12 +1737,13 @@ module.exports = React.createClass({
); );
} else if (hiddenHighlightCount > 0) { } else if (hiddenHighlightCount > 0) {
aux = ( aux = (
<div className="mx_RoomView_auxPanel_hiddenHighlights" onClick={this._onHiddenHighlightsClick}> <AccessibleButton element="div" className="mx_RoomView_auxPanel_hiddenHighlights"
onClick={this._onHiddenHighlightsClick}>
{_t( {_t(
"You have %(count)s unread notifications in a prior version of this room.", "You have %(count)s unread notifications in a prior version of this room.",
{count: hiddenHighlightCount}, {count: hiddenHighlightCount},
)} )}
</div> </AccessibleButton>
); );
} }