diff --git a/assets/js/frontend_book.js b/assets/js/frontend_book.js
index 2c78d362..87553002 100644
--- a/assets/js/frontend_book.js
+++ b/assets/js/frontend_book.js
@@ -545,7 +545,7 @@ window.FrontendBook = window.FrontendBook || {};
$('
'),
$('', {
'text': $('#select-timezone option:selected').text()
- + ' - ' + servicePrice + ' ' + serviceCurrency
+ + (servicePrice ? ' - ' + servicePrice + ' ' + serviceCurrency : '')
})
]
})
@@ -582,15 +582,15 @@ window.FrontendBook = window.FrontendBook || {};
}),
$('
'),
$('', {
- 'text': EALang.address + ': ' + address
+ 'text': address ? EALang.address + ': ' + address : ''
}),
$('
'),
$('', {
- 'text': EALang.city + ': ' + city
+ 'text': city ? EALang.city + ': ' + city : ''
}),
$('
'),
$('', {
- 'text': EALang.zip_code + ': ' + zipCode
+ 'text': zipCode ? EALang.zip_code + ': ' + zipCode : ''
}),
$('
'),
]