diff --git a/src/containers/ListingPage/ListingPage.css b/src/containers/ListingPage/ListingPage.css index bd2c2922..d8ff97c4 100644 --- a/src/containers/ListingPage/ListingPage.css +++ b/src/containers/ListingPage/ListingPage.css @@ -332,7 +332,7 @@ } .separator { - margin: 0 10px; + margin: 0 6px; } .contactLink { diff --git a/src/containers/ListingPage/ListingPage.js b/src/containers/ListingPage/ListingPage.js index 2859726a..b419ea81 100644 --- a/src/containers/ListingPage/ListingPage.js +++ b/src/containers/ListingPage/ListingPage.js @@ -231,6 +231,15 @@ export class ListingPageComponent extends Component { title = '', } = currentListing.attributes; + const { customAttributes } = currentListing.attributes; + const category = + customAttributes && customAttributes.category ? ( + + {customAttributes.category} + + + ) : null; + const topbar = ; const loadingTitle = intl.formatMessage({ @@ -503,6 +512,7 @@ export class ListingPageComponent extends Component {

{title}

+ {category} {showContactUser ? (