Balneário Camboriú
Account created on 30 September 2019, about 5 years ago
#

Merge Requests

Recent comments

🇧🇷Brazil julio_retkwa Balneário Camboriú

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

🇧🇷Brazil julio_retkwa Balneário Camboriú

Using Drupal 10.2.6

and comment #29 worked for me

I'm adding a patch for it

Thanks @lecabori

🇧🇷Brazil julio_retkwa Balneário Camboriú

Thanks @vlyalko

Patch #44 worked fine for me on all my views

Drupal 10.3.1

🇧🇷Brazil julio_retkwa Balneário Camboriú

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!

🇧🇷Brazil julio_retkwa Balneário Camboriú

#9 worked like a charm

Thank you.

🇧🇷Brazil julio_retkwa Balneário Camboriú

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

🇧🇷Brazil julio_retkwa Balneário Camboriú

julio_retkwa made their first commit to this issue’s fork.

🇧🇷Brazil julio_retkwa Balneário Camboriú

julio_retkwa created an issue.

🇧🇷Brazil julio_retkwa Balneário Camboriú

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 ?

🇧🇷Brazil julio_retkwa Balneário Camboriú

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

🇧🇷Brazil julio_retkwa Balneário Camboriú

#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
🇧🇷Brazil julio_retkwa Balneário Camboriú

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

🇧🇷Brazil julio_retkwa Balneário Camboriú

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

🇧🇷Brazil julio_retkwa Balneário Camboriú

#83 it's working fine for me. Thanks !

Production build 0.71.5 2024