componentProps doesnt seems to allow an array of items, every time i try to add an array it comes back as undefined when using navparams to get the result, single items are no problem… anyone know how to achieve this ?
// Works - navparam.get(“message”)
componentProps: {message: ‘message’, popoverController: this.pop}
// does not work navparam.get(“message”)
componentProps: [{message: ‘message’, popoverController: this.pop}, {message: ‘message’, popoverController: this.pop} ]