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 d0b6244 commit 6ba39b4Copy full SHA for 6ba39b4
core/src/components/picker/picker.tsx
@@ -449,6 +449,12 @@ export class Picker implements ComponentInterface {
449
case 1:
450
this.searchColumn(firstColumn, value);
451
break;
452
+ /**
453
+ * If the first character is `0` or `1` or allowed '2' it is
454
+ * possible that users are trying to type `09`
455
+ * or `11` into the hour field, so we should look
456
+ * at that first.
457
+ */
458
case 2:
459
const firstCharacter = inputEl.value.substring(0, 1);
460
value =
0 commit comments