I’m facing a problem where I need a duration input that allows unlimited hours but minutes limited to a maximum of 59.
My current idea to handle this is to create two separate inputs — one for hours and one for minutes — and then combine them on the frontend into a single duration string (e.g., 123:45
).
Is there a better or more standard way to implement this kind of input?