Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
For some mysterious reason, the class table grid is overflowing. This hides class details that are shown when a row is clicked.
On viewpoint of certain sizes, the grid may not take up 100% of the width.
Note
I write "mysterious" because I read from their official docs that the
<AgGridReact>
is supposed to fit to the parent div's height and width. In our case, that div is a<Box>
with height 320px and width 100%.<AgGridReact>
ignores that... On the contrary, this page in the docs hints us to usestyle
of<AgGridReact>
which doesn't exist now (according to the Typescript spec). Hence, it is also possible that this is a bug with ag-grid (since we're using the latest 33.0.4 now) but unfortunately I don't have time to investigate...Screenshots
Before v.s. After
(Safari 16.4, on my Apple M2 MacBook Pro, Ventura 13.3.1)