File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed
core/src/components/picker Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -429,13 +429,17 @@ export class Picker implements ComponentInterface {
429429 } ;
430430
431431 /**
432- * Attempts to intelligently search the first and second
433- * column as if they're number columns for the provided numbers
434- * where the first two numbers inpu are the first column
435- * and the last 2 are the last column. Tries to allow for the first
436- * number to be ignored for situations where typos occurred.
432+ * Attempts to intelligently search the first and second
433+ * column as if they're number columns for the provided numbers
434+ * where the first two numbers inpu are the first column
435+ * and the last 2 are the last column. Tries to allow for the first
436+ * number to be ignored for situations where typos occurred.
437437 */
438- private multiColumnSearch = ( firstColumn : HTMLIonPickerColumnElement , secondColumn : HTMLIonPickerColumnElement , input : string ) => {
438+ private multiColumnSearch = (
439+ firstColumn : HTMLIonPickerColumnElement ,
440+ secondColumn : HTMLIonPickerColumnElement ,
441+ input : string
442+ ) => {
439443 if ( input . length === 0 ) {
440444 return ;
441445 }
@@ -461,7 +465,7 @@ export class Picker implements ComponentInterface {
461465 this . searchColumn ( secondColumn , remainingDigits ) ;
462466 }
463467 }
464- }
468+ } ;
465469
466470 private selectMultiColumn = ( ) => {
467471 const { inputEl, el } = this ;
You can’t perform that action at this time.
0 commit comments