diff --git a/core/src/components/picker/picker.tsx b/core/src/components/picker/picker.tsx index 313073f7f8..36ed443a75 100644 --- a/core/src/components/picker/picker.tsx +++ b/core/src/components/picker/picker.tsx @@ -234,7 +234,7 @@ export class Picker implements OverlayInterface { private getSelected() { const selected: { [k: string]: any } = {}; this.columns.forEach((col, index) => { - const selectedColumn = col.selectedIndex + const selectedColumn = col.selectedIndex != null ? col.options[col.selectedIndex] : null; selected[col.name] = {