You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The timebox in domino reverses 12:00am with 12:00pm and vice versa.
Scenario to Replicate
Created a form with a Timebox field
Set the time to 12:00am or pm
Close the timepicker
Save the form as a record into a table
Observe the value set in the record; if a value of 12:00am was chosen, 12:00pm is set in the field and vice versa
Area of concern
We believe that the issue might be with the code segment below which located in: dominokit/domino-ui/1.0.0-RC6/domino-ui-1.0.0-RC6-sources.jar!/org/dominokit/domino/ui/timepicker/Clock12.java:111
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Issue
The timebox in domino reverses 12:00am with 12:00pm and vice versa.Scenario to Replicate
Area of concern
We believe that the issue might be with the code segment below which located in: dominokit/domino-ui/1.0.0-RC6/domino-ui-1.0.0-RC6-sources.jar!/org/dominokit/domino/ui/timepicker/Clock12.java:111
jsDate.setHours(DayPeriod.PM.equals(dayPeriod) ? hour + 12 : hour);
Beta Was this translation helpful? Give feedback.
All reactions