Merge pull request #5237 from matrix-org/t3chguy/fix/15126
Fix New Room List arrow key management
This commit is contained in:
commit
8ec7e7c714
2 changed files with 2 additions and 2 deletions
|
@ -52,7 +52,7 @@ interface IState {
|
||||||
// List of CSS classes which should be included in keyboard navigation within the room list
|
// List of CSS classes which should be included in keyboard navigation within the room list
|
||||||
const cssClasses = [
|
const cssClasses = [
|
||||||
"mx_RoomSearch_input",
|
"mx_RoomSearch_input",
|
||||||
"mx_RoomSearch_icon", // minimized <RoomSearch />
|
"mx_RoomSearch_minimizedHandle", // minimized <RoomSearch />
|
||||||
"mx_RoomSublist_headerText",
|
"mx_RoomSublist_headerText",
|
||||||
"mx_RoomTile",
|
"mx_RoomTile",
|
||||||
"mx_RoomSublist_showNButton",
|
"mx_RoomSublist_showNButton",
|
||||||
|
|
|
@ -165,7 +165,7 @@ export default class RoomSearch extends React.PureComponent<IProps, IState> {
|
||||||
icon = (
|
icon = (
|
||||||
<AccessibleButton
|
<AccessibleButton
|
||||||
title={_t("Search rooms")}
|
title={_t("Search rooms")}
|
||||||
className="mx_RoomSearch_icon"
|
className="mx_RoomSearch_icon mx_RoomSearch_minimizedHandle"
|
||||||
onClick={this.openSearch}
|
onClick={this.openSearch}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue