Merged in fix/tripadvisor-rating (pull request #2193)
fix(SW-2892): don't show Tripadvisor rating if undefined * fix: don't show rating if undefined Approved-by: Bianca Widstam Approved-by: Christian Andolf Approved-by: Erik Tiekstra
This commit is contained in:
@@ -62,9 +62,9 @@ export interface HotelCardDialogProps {
|
||||
}
|
||||
|
||||
export interface HotelCardDialogImageProps {
|
||||
firstImage: string | undefined
|
||||
altText: string | undefined
|
||||
ratings: number
|
||||
firstImage?: string
|
||||
altText?: string
|
||||
rating?: number | null
|
||||
imageError: boolean
|
||||
setImageError: (error: boolean) => void
|
||||
position: "top" | "left"
|
||||
|
||||
Reference in New Issue
Block a user