diff --git a/components/Search/SearchResults.component.jsx b/components/Search/SearchResults.component.jsx index 8a48db714..83fc93d02 100644 --- a/components/Search/SearchResults.component.jsx +++ b/components/Search/SearchResults.component.jsx @@ -3,7 +3,14 @@ * @param {Object} props */ const SearchResults = ({ - hit: { product_image, product_name, regular_price, sale_price, on_sale }, + hit: { + product_image, + product_name, + regular_price, + sale_price, + on_sale, + short_description, + }, }) => { return (
@@ -22,15 +29,13 @@ const SearchResults = ({
{on_sale && ( <> - - kr {regular_price} - + kr {regular_price} kr {sale_price} )} - {!on_sale && ( - kr {regular_price} - )} + {!on_sale && kr {regular_price}} +
+ {short_description}