Beta pre-release. A targeted layout fix for cards in a fixed-height sections-grid cell. Drop-in upgrade from 3.7.1 — no config changes.
🐛 Fix — sections-grid sizing
A card in a fixed-height grid cell now fills the cell instead of overflowing it.
When the card was placed in a sections-view grid cell with a fixed row count (rows ≠ auto), the configured height: (or the 400 px default) was still applied as a min-height. A card taller than the cell overflowed it, and the grid resize handle appeared to do nothing.
The fix: in a fixed-row cell the grid now owns the height — the card fills the cell and ignores both height: and square_map (the editor already greys those out under that constraint, and now disables the height box too). height: / square_map are unchanged in masonry/panel views and in auto-row cells.
The rule, in short:
grid_options.rows
| Height source | height:
|
|---|---|---|
auto / absent (or masonry/panel view)
| height: config (or 400 px)
| used |
| a number | the grid cell (rows × row-height) | ignored — resize with the cell handle |
Full Changelog: v3.7.1...v3.7.2-beta1