Problem/Motivation
I'm using nested paragraph with inline entity form complex widget.
When have multiple paragraphs, the table does not goes as far as it should and then my actions buttons are bellow the paragraph title instead of being at the right under the correct column.

Steps to reproduce
Use nested paragraph with inline entity form complex widget.
Add multiple paragraphs and see the issue.
Proposed resolution
It seem to be linked to the class "ief-tabledrag-handle tabledrag-cell"
In the paragraph.scss file, if we replace the
.draggable {
> td {
position: relative;
display: block;
flex: 0 0 auto;
}
}
with display: table-cell
It seem to fix the issue for me
| Comment | File | Size | Author |
|---|---|---|---|
| Capture d’écran 2025-03-26 à 12.37.29.png | 57.56 KB | arwillame |
Issue fork gin-3515484
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #2
mudasirweb commentedComment #3
mudasirweb commentedComment #4
kvib commentedJust a patch with the fix mentioned in this ticket for Gin 3.0.
(Patch need to be tested for Gin 4)
According to my tests, this doesn't seem to cause any regressions.
Comment #5
tim-dielsAdded screenshot of error for direct idea of issue
Comment #7
tim-dielsI added the patch as MR and manual testing seems to solve the issue and does not break on other parts. But maybe I'm not testing all cases.
Putting this to needs review for others to review aswel.
Comment #8
andysipple commentedI was having the same issue on Gin verison 5.0.3
The MR https://git.drupalcode.org/project/gin/-/merge_requests/620 fixed the issue.
Moving to reviewed and tested by the community.
Thank you
Comment #9
fchometonSame issue on Gin version 5.0.9
The MR fixed the issue.
Thanks.
Comment #10
jaydarnellSame issue on Gin version 5.0.10
The MR above fixes the issue: https://git.drupalcode.org/project/gin/-/merge_requests/620.patch
Thanks.
Comment #11
jurgenhaasMerged this into 4.1.x and cherry-picked into 5.0.x. This will not go into the core version of this theme since this needs to be covered by the paragraphs module in the future.