(v)
| 3051 | } |
| 3052 | |
| 3053 | function clampRowHeight(v) { |
| 3054 | const n = parseInt(v, 10); |
| 3055 | if (!Number.isFinite(n)) return 44; |
| 3056 | return Math.max(20, Math.min(60, n)); |
| 3057 | } |
| 3058 | |
| 3059 | function applyRowHeight(v) { |
| 3060 | const h = clampRowHeight(v); |
no outgoing calls
no test coverage detected