-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: consistent order of keyboard shortcuts #19305
Conversation
@marcaaron @eVoloshchak One of you needs to copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button] |
@allroundexperts, the PR looks good to me, but I'm a little bit confused about the steps
I can't reproduce this without the fix, order is always the same no matter where from I open the modal. |
This was happening for me on the same browser as well. If it's happening on different browsers for you, then I'll just change the steps. |
Ok, thank you. Let's change the steps in accordance with #18542 Also, there is a shortcuts modal on mobile/IOS/Android, please include screenshots for those too |
Reviewer Checklist
Screenshots/VideosWebScreen.Recording.2023-05-22.at.20.42.03.movDesktopScreen.Recording.2023-05-22.at.20.45.23.mov |
@eVoloshchak Updated the steps. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me
cc: @marcaaron
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! 🙇
@@ -18,7 +18,7 @@ const documentedShortcuts = {}; | |||
* @returns {Array} | |||
*/ | |||
function getDocumentedShortcuts() { | |||
return _.values(documentedShortcuts); | |||
return _.sortBy(_.values(documentedShortcuts), 'displayName'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
actually... I think sortBy()
works on objects so there's no need to call values()
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gonna merge as is because I'm going OOO and it's not worth introducing a delay over |
✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release. |
🚀 Deployed to staging by https://github.com/marcaaron in version: 1.3.18-0 🚀
|
🚀 Deployed to staging by https://github.com/marcaaron in version: 1.3.18-0 🚀
|
🚀 Deployed to staging by https://github.com/marcaaron in version: 1.3.18-0 🚀
|
🚀 Deployed to production by https://github.com/yuwenmemon in version: 1.3.18-2 🚀
|
Details
This PR makes the order in which keyboard shortcuts appear in the modal consistent.
Fixed Issues
$ #18542
PROPOSAL: #18542 (comment)
Tests
CMD + J
.CMD + J
Verify that the order of shortcuts in the modal remains the same.
Offline tests
N/A
QA Steps
CMD + J
.CMD + J
Verify that the order of shortcuts in the modal remains the same.
PR Author Checklist
### Fixed Issues
section aboveTests
sectionOffline steps
sectionQA steps
sectiontoggleReport
and notonIconClick
)src/languages/*
files and using the translation methodWaiting for Copy
label for a copy review on the original GH to get the correct copy.STYLE.md
) were followedAvatar
, I verified the components usingAvatar
are working as expected)/** comment above it */
this
properly so there are no scoping issues (i.e. foronClick={this.submit}
the methodthis.submit
should be bound tothis
in the constructor)this
are necessary to be bound (i.e. avoidthis.submit = this.submit.bind(this);
ifthis.submit
is never passed to a component event handler likeonClick
)StyleUtils.getBackgroundAndBorderStyle(themeColors.componentBG
)Avatar
is modified, I verified thatAvatar
is working as expected in all cases)ScrollView
component to make it scrollable when more elements are added to the page.main
branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to theTest
steps.Screenshots/Videos
Web
Screen.Recording.2023-05-19.at.11.06.08.PM.mov
Mobile Web - Chrome
Mobile Web - Safari
Desktop
Screen.Recording.2023-05-19.at.11.06.53.PM.mov
iOS
Android