fix(picker): lint

This commit is contained in:
ShaneK
2025-03-25 13:38:34 -07:00
parent cf9dd611dc
commit 48f25e6eb8

View File

@ -429,13 +429,17 @@ export class Picker implements ComponentInterface {
}; };
/** /**
* Attempts to intelligently search the first and second * Attempts to intelligently search the first and second
* column as if they're number columns for the provided numbers * column as if they're number columns for the provided numbers
* where the first two numbers inpu are the first column * where the first two numbers inpu are the first column
* and the last 2 are the last column. Tries to allow for the first * and the last 2 are the last column. Tries to allow for the first
* number to be ignored for situations where typos occurred. * 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) { if (input.length === 0) {
return; return;
} }
@ -461,7 +465,7 @@ export class Picker implements ComponentInterface {
this.searchColumn(secondColumn, remainingDigits); this.searchColumn(secondColumn, remainingDigits);
} }
} }
} };
private selectMultiColumn = () => { private selectMultiColumn = () => {
const { inputEl, el } = this; const { inputEl, el } = this;