Editor window keeps growing horizontally when opened
Editor window keeps growing horizontally when opened

I've noticed this a few times intermittently but this is happening consistently now for this example data set.
If you go to here, https://jyorkejudge.org/
Select the row showing and click on Edit Address
The editor window opens, then just keeps growing.
Answers
DataTable's resize observer is getting a bit over excitted there. I'm not entirely sure why on a first inspection. Thank you for the link I'll get back to you once I've had a chance to spend some time on it.
Allan
I think it has to do with the comnents dt in the editor form. It contains a column called ActLogComments and the editor is expanding until the contents of ActLogComments fit on one row (aka no wrapping}.
Below is where I define the comments data field in the editor. I tried adding a scroll bar but it didn't work.
I also don't see any type of nowrap descriptor.
I don't see a nowrap style applied to the commentsTable. I am already including the ellipsis.js so I decided to apply that class to the comments column:
This does limit the size of the comments column and it stops it from growing further. Note if I change this to 40 or 50, then the editor will grow until all of the 40 or 50 characters appear on one line.
Hoping we can find out ultimately why. I did not modify the page link that I shared, I did the above on the test page so see if it worked.