display studio apartments correctly
This commit is contained in:
parent
f728f0c4cd
commit
5ab3a91fdb
|
@ -25,7 +25,13 @@ const CardApartament = function (props) {
|
|||
<div className="apartmentSectionLeft">
|
||||
<img src="/images/apartment.png"></img>
|
||||
<div className="characteristics">
|
||||
<h3>{props.results.perimetrs} м², {props.results.rooms}{props.results.rooms > 1 ? "-х комнатная" : " комнатная"}</h3>
|
||||
<h3>{props.results.perimetrs} м², {props.results.rooms == 0 ? '' : props.results.rooms}
|
||||
|
||||
{props.results.rooms == 0 ? 'Гостинка' :
|
||||
(props.results.rooms > 1 ? "-х комнатная" : " комнатная")
|
||||
}
|
||||
|
||||
</h3>
|
||||
<p className="address">{props.results.address}, {props.results.floor} этаж из {props.results.floorHouse}</p>
|
||||
<div className="transport">
|
||||
<div className="transportBas">
|
||||
|
|
Loading…
Reference in New Issue