-
Notifications
You must be signed in to change notification settings - Fork 4.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
Edit Site: Fix sidebar template author navigation #67382
Conversation
Size Change: +3 B (0%) Total Size: 1.83 MB
ℹ️ View Unchanged
|
@@ -25,7 +26,7 @@ function TemplateDataviewItem( { template, isActive } ) { | |||
|
|||
return ( | |||
<SidebarNavigationItem | |||
to={ `/template?activeView=${ text }` } | |||
to={ addQueryArgs( '/template', { activeView: text } ) } |
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.
I don't undestand what's the difference between the two codes?
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.
Basically, URL encoding.
The version in trunk will navigate to:
/template?activeView=Twenty Twenty-Four
while the version here will navigate to:
/template?activeView=Twenty%20Twenty-Four
and the former seems to break the navigation.
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.
makes sense :)
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.
Shipping this one, but it might make sense to double-check other instances where we hardcoded the query string instead of using addQueryArgs()
.
Cases like this are exactly why I was suggesting defaulting to addQueryArgs()
FWIW.
The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the If you're merging code through a pull request on GitHub, copy and paste the following into the bottom of the merge commit message.
To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook. |
Co-authored-by: tyxla <[email protected]> Co-authored-by: youknowriad <[email protected]>
Co-authored-by: tyxla <[email protected]> Co-authored-by: youknowriad <[email protected]>
What?
Fixes the template author sidebar navigation which regressed in #67199.
Why?
We slightly broke it in #67199 - clicking on a template author to filter templates is not working right now.
How?
We're using
addQueryArgs()
to properly deal with the existing query while adding the filter args.Testing Instructions
Testing Instructions for Keyboard
Same
Screenshots or screencast