1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-01 13:11:10 +03:00

Replace "community" with "space" of keyboard shortcuts (#7994)

This commit is contained in:
Suguru Hirahara
2022-03-23 07:52:05 +00:00
committed by GitHub
parent d640ac374f
commit 9b2944294c
3 changed files with 14 additions and 14 deletions

View File

@@ -529,11 +529,11 @@ class LoggedInView extends React.Component<IProps, IState> {
unread: true,
});
break;
case KeyBindingAction.PreviousVisitedRoomOrCommunity:
case KeyBindingAction.PreviousVisitedRoomOrSpace:
PlatformPeg.get().navigateForwardBack(true);
handled = true;
break;
case KeyBindingAction.NextVisitedRoomOrCommunity:
case KeyBindingAction.NextVisitedRoomOrSpace:
PlatformPeg.get().navigateForwardBack(false);
handled = true;
break;