mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
@ -234,7 +234,7 @@ export class Picker implements OverlayInterface {
|
|||||||
private getSelected() {
|
private getSelected() {
|
||||||
const selected: { [k: string]: any } = {};
|
const selected: { [k: string]: any } = {};
|
||||||
this.columns.forEach((col, index) => {
|
this.columns.forEach((col, index) => {
|
||||||
const selectedColumn = col.selectedIndex
|
const selectedColumn = col.selectedIndex != null
|
||||||
? col.options[col.selectedIndex]
|
? col.options[col.selectedIndex]
|
||||||
: null;
|
: null;
|
||||||
selected[col.name] = {
|
selected[col.name] = {
|
||||||
|
Reference in New Issue
Block a user