From 219589598df6f1868f264b1c41186c2ae992caa3 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Wed, 4 Apr 2018 12:36:34 -0400 Subject: [PATCH] fix(select): pass header and subHeader to interfaces --- core/src/components/select/select.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/components/select/select.tsx b/core/src/components/select/select.tsx index 48a0abeac6..30f240a14a 100644 --- a/core/src/components/select/select.tsx +++ b/core/src/components/select/select.tsx @@ -311,8 +311,8 @@ export class Select { const popoverOpts: PopoverOptions = Object.assign(interfaceOptions, { component: 'ion-select-popover', componentProps: { - title: interfaceOptions.title, - subTitle: interfaceOptions.subTitle, + header: interfaceOptions.header, + subHeader: interfaceOptions.subHeader, message: interfaceOptions.message, value: this.value, options: this.childOpts.map(o => { @@ -378,7 +378,7 @@ export class Select { const labelText = (label) ? label.textContent : null; const alertOpts: AlertOptions = Object.assign(interfaceOptions, { - title: interfaceOptions.title ? interfaceOptions.title : labelText, + header: interfaceOptions.header ? interfaceOptions.header : labelText, inputs: this.childOpts.map(o => { return { type: (this.multiple ? 'checkbox' : 'radio'),