prevent undefined.
This commit is contained in:
parent
8bbacb66c6
commit
272942dd33
1 changed files with 2 additions and 1 deletions
|
|
@ -59,8 +59,9 @@ export default {
|
||||||
return { mainStore };
|
return { mainStore };
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
|
const bailout = useMainStore().pageData(issPageValues.BAILOUT_PAGE);
|
||||||
return {
|
return {
|
||||||
bailout: useMainStore().pageData(issPageValues.BAILOUT_PAGE),
|
bailout: bailout ?? { bailoutCode: BailoutCode.Unknown },
|
||||||
contactConfirmationModel: useMainStore().pageData(issPageValues.CONTACT_CONFIRMATION),
|
contactConfirmationModel: useMainStore().pageData(issPageValues.CONTACT_CONFIRMATION),
|
||||||
widget: {
|
widget: {
|
||||||
defaultSiteHeader: 'SiteSubHeaderWidget',
|
defaultSiteHeader: 'SiteSubHeaderWidget',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue