web-ridge / react-native-paper-dates

Smooth and fast cross platform Material Design date and time picker for React Native Paper
https://www.reactnativepaperdates.com
MIT License
654 stars 170 forks source link

Web, de locale, analog clock in the morning cannot select noon #178

Closed DorianSternVukotic closed 2 years ago

DorianSternVukotic commented 2 years ago

In desktop web, at locale de, in the morning, analog clock shows 00 both in inner and outer circle and it is impossible to select noon.

Reproducible on the demo page of this project

image

We fixed on our project by using patch package and turning Line 37 in src/Time/AnalogClockHours.tsx {mode === 'AM' && i + 1 === 12 ? '00' : i + 1} into {(mode === 'AM' && !!!is24Hour && i + 1 === 12) ? '00' : i + 1}

RichardLindhout commented 2 years ago

Ok I added this, thanks for your solution :)