(v)
| 3081 | } |
| 3082 | |
| 3083 | function clampGalleryColumns(v) { |
| 3084 | const max = getGalleryMaxColumns(); |
| 3085 | const n = parseInt(v, 10); |
| 3086 | const base = Number.isFinite(n) ? n : 3; |
| 3087 | return Math.max(1, Math.min(max, base)); |
| 3088 | } |
| 3089 | |
| 3090 | // Apply stored row height immediately so the table uses it on first render. |
| 3091 | applyRowHeight(localStorage.getItem('rowHeight') || '44'); |
no test coverage detected