-
Notifications
You must be signed in to change notification settings - Fork 4.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
Polish experimental navigation block #50670
Merged
SantosGuillamot
merged 6 commits into
trunk
from
fix/polish-experimental-navigation-block
May 19, 2023
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
d24e717
Remove unnecessary `async` in `effects`
SantosGuillamot e47f3cb
Fix page list block and multiple submenus
SantosGuillamot 519470c
Use `requestUtils.createPage` in Page list tests
SantosGuillamot 0ce72a8
Rename effect to `initMenu`
SantosGuillamot 3490672
Fix typo
SantosGuillamot 1a0c2d3
Merge branch 'trunk' into fix/polish-experimental-navigation-block
SantosGuillamot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,66 @@ | ||
{"cookies":[{"name":"wordpress_test_cookie","value":"WP%20Cookie%20check","domain":"localhost","path":"/","expires":-1,"httpOnly":false,"secure":false,"sameSite":"Lax"},{"name":"wordpress_23778236db82f19306f247e20a353a99","value":"admin%7C1684446357%7Cdx01QADx42SHH9s4ikPkhkS07FzxnWES5FY2SsnwL7v%7C45404d74460259bc9148f2357f2180af488d65921b10ed5981fff860afa5c8ca","domain":"localhost","path":"/wp-content/plugins","expires":-1,"httpOnly":true,"secure":false,"sameSite":"Lax"},{"name":"wordpress_23778236db82f19306f247e20a353a99","value":"admin%7C1684446357%7Cdx01QADx42SHH9s4ikPkhkS07FzxnWES5FY2SsnwL7v%7C45404d74460259bc9148f2357f2180af488d65921b10ed5981fff860afa5c8ca","domain":"localhost","path":"/wp-admin","expires":-1,"httpOnly":true,"secure":false,"sameSite":"Lax"},{"name":"wordpress_logged_in_23778236db82f19306f247e20a353a99","value":"admin%7C1684446357%7Cdx01QADx42SHH9s4ikPkhkS07FzxnWES5FY2SsnwL7v%7C8ace4a8f867bc4e587d5264662296f90fcd133710cd0dd3386a92801816bd5d1","domain":"localhost","path":"/","expires":-1,"httpOnly":true,"secure":false,"sameSite":"Lax"},{"name":"wp-settings-1","value":"editor%3Dtinymce","domain":"localhost","path":"/","expires":1715809558.14,"httpOnly":false,"secure":false,"sameSite":"Lax"},{"name":"wp-settings-time-1","value":"1684273558","domain":"localhost","path":"/","expires":1715809558.14,"httpOnly":false,"secure":false,"sameSite":"Lax"}],"nonce":"fe590a7aae","rootURL":"http://localhost:8889/index.php?rest_route=/"} | ||
{ | ||
"cookies": [ | ||
{ | ||
"name": "wordpress_test_cookie", | ||
"value": "WP%20Cookie%20check", | ||
"domain": "localhost", | ||
"path": "/", | ||
"expires": -1, | ||
"httpOnly": false, | ||
"secure": false, | ||
"sameSite": "Lax" | ||
}, | ||
{ | ||
"name": "wordpress_23778236db82f19306f247e20a353a99", | ||
"value": "admin%7C1684446357%7Cdx01QADx42SHH9s4ikPkhkS07FzxnWES5FY2SsnwL7v%7C45404d74460259bc9148f2357f2180af488d65921b10ed5981fff860afa5c8ca", | ||
"domain": "localhost", | ||
"path": "/wp-content/plugins", | ||
"expires": -1, | ||
"httpOnly": true, | ||
"secure": false, | ||
"sameSite": "Lax" | ||
}, | ||
{ | ||
"name": "wordpress_23778236db82f19306f247e20a353a99", | ||
"value": "admin%7C1684446357%7Cdx01QADx42SHH9s4ikPkhkS07FzxnWES5FY2SsnwL7v%7C45404d74460259bc9148f2357f2180af488d65921b10ed5981fff860afa5c8ca", | ||
"domain": "localhost", | ||
"path": "/wp-admin", | ||
"expires": -1, | ||
"httpOnly": true, | ||
"secure": false, | ||
"sameSite": "Lax" | ||
}, | ||
{ | ||
"name": "wordpress_logged_in_23778236db82f19306f247e20a353a99", | ||
"value": "admin%7C1684446357%7Cdx01QADx42SHH9s4ikPkhkS07FzxnWES5FY2SsnwL7v%7C8ace4a8f867bc4e587d5264662296f90fcd133710cd0dd3386a92801816bd5d1", | ||
"domain": "localhost", | ||
"path": "/", | ||
"expires": -1, | ||
"httpOnly": true, | ||
"secure": false, | ||
"sameSite": "Lax" | ||
}, | ||
{ | ||
"name": "wp-settings-1", | ||
"value": "editor%3Dtinymce", | ||
"domain": "localhost", | ||
"path": "/", | ||
"expires": 1715809558.14, | ||
"httpOnly": false, | ||
"secure": false, | ||
"sameSite": "Lax" | ||
}, | ||
{ | ||
"name": "wp-settings-time-1", | ||
"value": "1684273558", | ||
"domain": "localhost", | ||
"path": "/", | ||
"expires": 1715809558.14, | ||
"httpOnly": false, | ||
"secure": false, | ||
"sameSite": "Lax" | ||
} | ||
], | ||
"nonce": "fe590a7aae", | ||
"rootURL": "http://localhost:8889/index.php?rest_route=/" | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This file wasn't supposed to be committed 😅 . I posted the same in #50681 (review).
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.
Oh, it seems I included it after merging trunk in this commit. Any idea why that could be happening?