Skip to content

Commit 48f25e6

Browse files
committed
fix(picker): lint
1 parent cf9dd61 commit 48f25e6

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

core/src/components/picker/picker.tsx

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)