We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0292d3 commit 966a12fCopy full SHA for 966a12f
src/controls/dateTimePicker/HoursComponent.tsx
@@ -104,14 +104,14 @@ export default class HoursComponent extends React.Component<IHoursComponentProps
104
} else {
105
// 12 hours time convention
106
if (i === 0) {
107
- digit = `12${amDesignator}`;
+ digit = `12 ${amDesignator}`;
108
} else if (i < 12) {
109
- digit = `${i}${amDesignator}`;
+ digit = `${i} ${amDesignator}`;
110
111
if (i === 12) {
112
- digit = `12${pmDesignator}`;
+ digit = `12 ${pmDesignator}`;
113
114
- digit = `${(i % 12)}${pmDesignator}`;
+ digit = `${(i % 12)} ${pmDesignator}`;
115
}
116
117
0 commit comments