From d48c41db5ba2c169b3906ef5d8d5e2367b47872e Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Tue, 5 Dec 2023 13:25:55 -0500 Subject: [PATCH] use generic for query selector --- core/src/components/picker-column/picker-column.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/components/picker-column/picker-column.tsx b/core/src/components/picker-column/picker-column.tsx index 396ce9495c..17413091d4 100644 --- a/core/src/components/picker-column/picker-column.tsx +++ b/core/src/components/picker-column/picker-column.tsx @@ -441,7 +441,7 @@ export class PickerColumn implements ComponentInterface { get activeItem() { const { value } = this; const options = Array.from( - this.el.querySelectorAll('ion-picker-column-option') as NodeListOf + this.el.querySelectorAll('ion-picker-column-option') ); return options.find((option: HTMLIonPickerColumnOptionElement) => { /**