fix(SW-1111) added member price
This commit is contained in:
@@ -106,8 +106,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
.facilities,
|
.facilities {
|
||||||
.memberPrice {
|
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.dialog {
|
.dialog {
|
||||||
|
|||||||
@@ -12,7 +12,10 @@ export function getHotelPins(hotels: HotelData[]): HotelPin[] {
|
|||||||
name: hotel.hotelData.name,
|
name: hotel.hotelData.name,
|
||||||
publicPrice: hotel.price?.public?.localPrice.pricePerNight ?? null,
|
publicPrice: hotel.price?.public?.localPrice.pricePerNight ?? null,
|
||||||
memberPrice: hotel.price?.member?.localPrice.pricePerNight ?? null,
|
memberPrice: hotel.price?.member?.localPrice.pricePerNight ?? null,
|
||||||
currency: hotel.price?.public?.localPrice.currency || null,
|
currency:
|
||||||
|
hotel.price?.public?.localPrice.currency ||
|
||||||
|
hotel.price?.member?.localPrice.currency ||
|
||||||
|
null,
|
||||||
images: [
|
images: [
|
||||||
hotel.hotelData.hotelContent.images,
|
hotel.hotelData.hotelContent.images,
|
||||||
...(hotel.hotelData.gallery?.heroImages ?? []),
|
...(hotel.hotelData.gallery?.heroImages ?? []),
|
||||||
|
|||||||
Reference in New Issue
Block a user