From 48f25e6eb87f93e5100d7b27836494aa23607b95 Mon Sep 17 00:00:00 2001 From: ShaneK Date: Tue, 25 Mar 2025 13:38:34 -0700 Subject: [PATCH] fix(picker): lint --- core/src/components/picker/picker.tsx | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/core/src/components/picker/picker.tsx b/core/src/components/picker/picker.tsx index 0264a8dc23..5e12754c80 100644 --- a/core/src/components/picker/picker.tsx +++ b/core/src/components/picker/picker.tsx @@ -429,13 +429,17 @@ export class Picker implements ComponentInterface { }; /** - * Attempts to intelligently search the first and second - * column as if they're number columns for the provided numbers - * where the first two numbers inpu are the first column - * and the last 2 are the last column. Tries to allow for the first - * number to be ignored for situations where typos occurred. + * Attempts to intelligently search the first and second + * column as if they're number columns for the provided numbers + * where the first two numbers inpu are the first column + * and the last 2 are the last column. Tries to allow for the first + * number to be ignored for situations where typos occurred. */ - private multiColumnSearch = (firstColumn: HTMLIonPickerColumnElement, secondColumn: HTMLIonPickerColumnElement, input: string) => { + private multiColumnSearch = ( + firstColumn: HTMLIonPickerColumnElement, + secondColumn: HTMLIonPickerColumnElement, + input: string + ) => { if (input.length === 0) { return; } @@ -461,7 +465,7 @@ export class Picker implements ComponentInterface { this.searchColumn(secondColumn, remainingDigits); } } - } + }; private selectMultiColumn = () => { const { inputEl, el } = this;