(value)
| 555 | const min = Number.parseFloat(connectionThicknessSlider.min) || 0.001; |
| 556 | const max = Number.parseFloat(connectionThicknessSlider.max) || 0.1; |
| 557 | const formatThickness = (value) => `${value.toFixed(3)}`; |
| 558 | const syncConnectionThicknessUi = (value) => { |
| 559 | connectionThicknessSlider.value = String(value); |
| 560 | connectionThicknessValue.textContent = formatThickness(value); |
no outgoing calls
no test coverage detected