We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
next-drupal (NPM package)
A clear and concise description of what the bug is.
composer create-project drupal/recommended-project drupal-site
composer require drupal/next
Open your Drupal composer.json file.
Add the following patches under "extra". "extra": { // highlight-start "patches": { "drupal/subrequests": { "Get same results on different request": "https://www.drupal.org/files/issues/2019-07-18/change_request_type-63049395-09.patch" }, "drupal/decoupled_router": { "Unable to resolve path on node in other language than default": "https://www.drupal.org/files/issues/2022-11-30/decouple_router-3111456-resolve-language-issue-58.patch" } }, // highlight-end }
composer require cweagans/composer-patches
The text was updated successfully, but these errors were encountered:
Same problem; patch not applied.
Sorry, something went wrong.
for latest version of decoupled_router 2.0.5 Used this patch - https://www.drupal.org/files/issues/2024-07-11/decouple_router-3111456-resolve-language-issue-63--get-translation-re-rolled.patch
If that's the preferred solution, could somebody please update the code at https://next-drupal.org/learn/quick-start/apply-patches accordingly.
Kind reminder
Ran into a similar problem the patch in the docs was in fact applying but not actually working with decoupled router 2.0.5
This patch worked with the newest decoupeld router installed by default.
I will make a PR to update this documentation
No branches or pull requests
Package containing the bug
next-drupal (NPM package)
Describe the bug
A clear and concise description of what the bug is.
Steps to reproduce:
composer create-project drupal/recommended-project drupal-site
composer require drupal/next
Open your Drupal composer.json file.
Add the following patches under "extra".
"extra": {
// highlight-start
"patches": {
"drupal/subrequests": {
"Get same results on different request": "https://www.drupal.org/files/issues/2019-07-18/change_request_type-63049395-09.patch"
},
"drupal/decoupled_router": {
"Unable to resolve path on node in other language than default": "https://www.drupal.org/files/issues/2022-11-30/decouple_router-3111456-resolve-language-issue-58.patch"
}
},
// highlight-end
}
composer require cweagans/composer-patches
The text was updated successfully, but these errors were encountered: