Skip to content

Commit

Permalink
Fix - Correction de l'affichage du "on arrive bientôt" si un producte…
Browse files Browse the repository at this point in the history
…ur sans produits est sélectionné dans les filtres
  • Loading branch information
noelmugnier committed Dec 21, 2020
1 parent 910d81d commit 1e7b604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/search-products/SearchProducts.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@
</div>
{/if}
<!-- si on ne trouve pas de produits alors qu'il n'y a pas de filtre, on affiche un écran "Nous ne sommes pas encore arrivés !" -->
{#if !$isLoading && totalProducts < 1 && (!$filters.tags || ($filters.tags && $filters.tags.length === 0)) && !$filters.text}
{#if !$isLoading && totalProducts < 1 && (activeFilters <= 0) && !$filters.text}
<div class="text-lg">
{#if departmentProgress}
<h2 class="mt-5 mb-5 font-semibold">
Expand Down

0 comments on commit 1e7b604

Please sign in to comment.