Thanks @mandclu those instructions worked well for me to get a draggable view working in Drupal 10. I'd got stuck using the readme.md file, partly as I assumed I needed to position the Draggableviews: Content field before the title. Once moved to after the title it worked fine.
Test the merge request code on a site I'm working on and it worked perfectly, no more nav-tabs.js errors.
I had the same issue. I resolved it by first installing the latest RC version of drupal/inline_entity_form and then installing Commerce and that worked.
I didn't need to adjust the "minimum-stability" to do this - so it remained as 'stable'
For reference here's my composer commands using the latest versions of each as of today:
composer require 'drupal/inline_entity_form:^3.0@RC'
composer require 'drupal/commerce:^2.38'
I'm also getting a similar error for filtering by Event Type. Views gives me the error message:
No valid values found on filter: CiviCRM Event (CiviCRM Entity): Event Type.
The PHP error log gives:
Uncaught PHP Exception Error: "Attempt to assign property "type" on null" at /web/core/modules/views/src/ManyToOneHelper.php line 251
Here's the setup I used for a Drupal 10 site with a child theme. I created a folder called 'colorbox' in the root of my child theme folder and added my custom Colobox CSS and JS files to that folder. I then updated the *.libraries.yml file to include the Colorbox css and js files like this:
*.libraries.yml file before adding colobox:
global-styling:
css:
theme:
css/style.css: {}
*.libraries.yml file after adding colobox:
global-styling:
css:
theme:
css/style.css: {}
colorbox/colorbox.css: {}
js:
colorbox/colorbox.js: {}
And that all worked.
Remember to clear Drupal caches after making these changes.
Patch in #5 fixed the issue for me too.