-
Notifications
You must be signed in to change notification settings - Fork 2k
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: runner select all #8256
base: develop
Are you sure you want to change the base?
fix: runner select all #8256
Conversation
@@ -476,10 +476,10 @@ export const Runner: FC<{}> = () => { | |||
? Array.from(reqList.items) | |||
.filter(item => item.ancestorIds.includes(targetFolderId)) |
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.
is this filter necessary?
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.
It looks like we can drop it.
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.
Thanks for the fix 👍 .
@@ -476,10 +476,10 @@ export const Runner: FC<{}> = () => { | |||
? Array.from(reqList.items) | |||
.filter(item => item.ancestorIds.includes(targetFolderId)) |
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.
It looks like we can drop it.
will merge after 10.3 |
245193e
to
e271c50
Compare
a keyboard shortcut
⌘ Cmd + A
can select all grid list items and letselectedKeys
to beall
, we need to handle this case