Tested the bug on MAC OS Sonoma. But I couldn't replicate this issue. Focus was working properly.
Hi @barbara.losonc,
Please add some details for styling adjustments.
Hi @scott_euser,
Horizontal break is happening because of very long single word. Its content issue. No other breakage issue found.
Hi @e0ipso,
Here I have created logo for warmer module. Please review and post your comments.
Hi @Eli-T,
I have attached the patch to have the 3 character hex-color. Please verify and add comments.
Hi @Fabianx,
I have created and attached the patch. Could you please verify this?
Iam working on this.
Hi @mpereztejeiro ,
Instead of theme, you can try to add on relevant twig file template to achieve this.
Could you explain about the solution to achieve ? I can help you on that.
Hi @carolpettirossi,
I have installed Drupal 10, content translation and checked the mentioned issue. I couldn't reproduce the issue mentioned above. I have attached the screen recording below for reference. If any other issue, Please let me know.
hi @manojkumar_97, @cilefen,
Here I have updated the patch. Please let me if anything needs to be changed.
hi @manojkumar_97, @cilefen,
Here I have updated the patch please review and post your comments.
We can work on the solution to create a template on table field module as patch to check whether none of the cells is empty, the table structure should not be rendered. If the approach is getting approved, I can work on it.
Hi hockey2112 ,
If all the cells are empty or the values are not added on node, it shouldn't render the empty table structure of table field. If any one cell have values then the table structure should be rendered.
Is the requirement is understood right?
Here I have attached the screenshot how the fix looks.
Hi @manojkumar_97,
I have able to replicate the issue on enabling the olivero base theme as admin theme. I have attached the patch for it. Please review it and let me know your feedback.
Hi @manojkumar_97,
I have tested the same with claro theme. I couldn't see any breakages in the site. Could you please add some details, if you still face issues?
Reference screenshot below,
Hi @hockey2112,
I have checked the table field. The default column and row is set to 5/5. There is an option to rebuild the row and column in node pages, which is working fine. If column and row is default and if we are filling only two rows, the other cells remains empty which still makes sense.
Could you please elaborate do you face any specific issues other than that?
Iam working on this issue.
Hi @aaronpinero
You are getting the conflict issue(TypeError) because the jquery.validate.min.js is being loaded from CDN by default from the ClientSide Validation module.
Solution to this issue:
We should have the jQuery library with web/libraries/jquery-validation.
Instead of doing manually please do follow below step to fix it:
1. Add the below things in composer.json file
"repositories": {
"drupal": {
"type": "composer",
"url": "https://packages.drupal.org/8"
},
"npm-assets": {
"type": "composer",
"url": "https://asset-packagist.org"
}
},
and
"extra": {
"installer-types": [
"npm-asset"
],
...............
within installer paths,
"installer-paths": {
"web/core": [
"type:drupal-core",
"type:npm-asset"
],
.........................
2. Require following composer dependencies.
composer require oomphinc/composer-installers-extender
composer require npm-asset/jquery-validation:^1.17
3. If you face any issue on site, Please remove composer.json and vendor folder. Then run composer install command.
4. Now you will be able to see the node_modules folder outside web.
5. Please copy jquery-validation folder and place it inside web/libraries folder. Please ensure proper permission added.
6. Now the validation will be handled from js file in the libraries folder. You will be able to apply ckeditor things without console errors.
Note: After everything is setup successfully, you can remove node-modules folder and json file outside the folder.
Please let me know if you tried the above steps and post your comments.
Iam working on this