breidert → credited julio_retkwa → .
Check comment #77
That patch worked for me https://www.drupal.org/project/decoupled_router/issues/3111456#comment-1... 🐛 Unable to resolve path on node in other language than default Needs work
Using Drupal 10.2.6
and comment #29 worked for me
I'm adding a patch for it
Thanks @lecabori
Thanks @vlyalko
Patch #44 worked fine for me on all my views
Drupal 10.3.1
Here is the Portuguese translation of the Drupal 11 landing page
If someone could review that for me would be great!
https://docs.google.com/spreadsheets/d/1HbXlin1gkiETHSigwcBLjOpJ9BHdQ991...
Thank you!
I will look at this issue.
julio_retkwa → created an issue.
#9 worked like a charm
Thank you.
julio_retkwa → made their first commit to this issue’s fork.
Hi all
I've faced the same issue and solution from @mahtab_alam worked fine, Thank you!
had to do nothing else on maxlength.libraries.yml
then just add:
- ckeditor5/internal.drupal.ckeditor5
In my scenario I was using paragraph
julio_retkwa → made their first commit to this issue’s fork.
julio_retkwa → created an issue.
looks like this is a duplicate of https://www.drupal.org/project/image_lazy_loader/issues/3297403 💬 Automated Drupal 10 compatibility fixes RTBC can this be closed ?
May someone can have a look on it? https://git.drupalcode.org/project/image_lazy_loader/-/merge_requests/1
Is the same code presented by update bot
julio_retkwa → created an issue.
#3 working fine for me as I had to follow the new standard described here: https://www.drupal.org/docs/contributed-modules/components/registering-t... →
TL:DR
I had to replace my theme.info.yml section from this:
component-libraries:
base:
paths:
- components/00-base
atoms:
paths:
- components/01-atoms
molecules:
paths:
- components/02-molecules
organisms:
paths:
- components/03-organisms
To something like:
components:
namespaces:
base: components/00-base
atoms: components/01-atoms
molecules: components/02-molecules
organisms: components/03-organisms
templates: components/04-templates
pages: components/05-pages
I think this was already fixed on newer versions, but anyway I'm adding this patch to whoever is facing this on alpha4 as me
For anyone that is facing this you can try something like:
CKEDITOR.on("instanceReady", function(event) {
event.editor.on("beforeCommandExec", function(event) {
// Show the paste dialog for the paste buttons and right-click paste
if (event.data.name === "paste") {
event.editor._.forcePasteDialog = true;
}
// Don't show the paste dialog for Ctrl+Shift+V
if (event.data.name === "pastetext" && event.data.commandData.from === "keystrokeHandler") {
event.cancel();
}
})
});
which will force the old dialog, looks like is something asked since 2017: https://github.com/ckeditor/ckeditor4/issues/469#issuecomment-524185244
julio_retkwa → created an issue.
#83 it's working fine for me. Thanks !