- Issue created by @joachim
- Status changed to Needs review
over 1 year ago 1:13pm 24 October 2023 - last update
over 1 year ago 30,434 pass - Status changed to Needs work
over 1 year ago 3:29pm 24 October 2023 - 🇺🇸United States smustgrave
$edit = ['field_storage[subform][cardinality_number]' => 2]; $this->drupalGet('admin/structure/types/manage/article/fields/node.article.field_image'); $this->submitForm($edit, 'Save'); // Make the image field non-translatable. $edit = ['settings[node][article][fields][field_image]' => FALSE]; $this->drupalGet('admin/config/regional/content-language'); $this->submitForm($edit, 'Save configuration');
$edit['use_admin_theme'] = FALSE; $this->drupalGet('admin/appearance'); $this->submitForm($edit, 'Save configuration');
Could these be converted too?
- Status changed to Needs review
over 1 year ago 8:56am 25 October 2023 - last update
over 1 year ago 30,437 pass - Status changed to RTBC
over 1 year ago 2:02pm 25 October 2023 - last update
over 1 year ago 30,438 pass - last update
over 1 year ago 30,464 pass - last update
over 1 year ago 30,480 pass - last update
over 1 year ago 30,483 pass - last update
over 1 year ago 30,486 pass - last update
over 1 year ago 30,488 pass - last update
over 1 year ago 30,510 pass - last update
over 1 year ago 30,516 pass - Status changed to Needs review
over 1 year ago 11:32pm 10 November 2023 - 🇬🇧United Kingdom longwave UK
+++ b/core/modules/node/tests/src/Functional/NodeTranslationUITest.php @@ -258,21 +263,19 @@ public function testTranslationLinkTheme() { + $this->container->get('router.builder')->rebuild();
Why do we need to do a router rebuild here but not in the earlier case? This sort of thing makes me take pause about these conversions because it's not clear why we have to do this now when we didn't before.
- Status changed to Needs work
over 1 year ago 12:11am 11 November 2023 The Needs Review Queue Bot → tested this issue.
While you are making the above changes, we recommend that you convert this patch to a merge request → . Merge requests are preferred over patches. Be sure to hide the old patch files as well. (Converting an issue to a merge request without other contributions to the issue will not receive credit.)
- 🇬🇧United Kingdom joachim
> Why do we need to do a router rebuild here but not in the earlier case? This sort of thing makes me take pause about these conversions because it's not clear why we have to do this now when we didn't before.
Let's try without it :)
Part of the problem with these conversions is that the language system's API is complicated and not well-documented. - First commit to issue fork.
- 🇦🇺Australia acbramley
Why do we need to do a router rebuild here but not in the earlier case
Because changing node.settings.use_admin_theme requires a route rebuild. Before this was done via the form submission handler.
Some of the changes from the patch were already implemented or no longer applied.
- Merge request !11616Issue #3385836: Remove unnecessary form submissions in NodeTranslationUITest → (Open) created by acbramley
- 🇬🇧United Kingdom joachim
> Because changing node.settings.use_admin_theme requires a route rebuild
Let's add a comment to say that. Otherwise someone in the future will wonder about that all over again.