I'm trying to track duration in hours/minutes with separate NumericTextbox fields, where the Hours are increased by 1 if Minutes becomes 60, and Minutes is reset back to 0.
Demo: https://stackblitz.com/edit/react-cdbhuu?file=app/main.jsx
(Click the up spinner for Minutes, as it increases from 0 -> 15 -> 30 -> 45 -> 60)
Updating the Hours is working fine, however the Minutes field remains at 60 until clicking outside of the field. I've tried calling focus/click on the label and other elements, but still can't get those Minutes to reset back to 0.