Skip to content

Commit

Permalink
Fix - Correction de l'affichage de la ligne2 de l'adresse dans les li…
Browse files Browse the repository at this point in the history
…vraisons d'un product
  • Loading branch information
noelmugnier committed Jan 27, 2021
1 parent 8f4284f commit e11ccf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/search-products/ProductDetails.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -331,9 +331,9 @@ import { config } from "../../configs/config";
<div>
<p class="font-semibold">{DeliveryKind.label(delivery.kind)}</p>
<p>{delivery.address.line1}</p>
{#if product.producer.address.line2}
{#if delivery.address.line2}
<p>
{product.producer.address.line2}
{delivery.address.line2}
</p>
{/if}
<p>{delivery.address.zipcode} {delivery.address.city}</p>
Expand Down

0 comments on commit e11ccf0

Please sign in to comment.