mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 01:03:03 +08:00
fix(picker): lint
This commit is contained in:
@ -435,7 +435,11 @@ export class Picker implements ComponentInterface {
|
|||||||
* 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;
|
||||||
|
Reference in New Issue
Block a user