Skip to content

Commit

Permalink
feat(formapi): Ajout d'un message notifiant qu'il n'y a aucune donnée…
Browse files Browse the repository at this point in the history
… pour les filtre sélectionnés #49
  • Loading branch information
Naminoshin committed Nov 6, 2024
1 parent bfd5848 commit 23b527e
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@
></gn-ui-ign-api-produit>
</div>
</div>
<div
class="text-center"
*ngIf="(listFilteredProduct$ | async)?.length === 0"
>
Aucune donnée pour les filtres sélectionnés
</div>
</tr>
<tr class="flex items-center justify-between">
<div class="w-1/3">
Expand All @@ -83,7 +89,7 @@
</div>
<div class="w-1/3 flex items-center justify-center">
<div
*ngIf="(pageMax$ | async) !== 1"
*ngIf="(pageMax$ | async) >= 1"
class="sticky z-10 leading-6 font-semibold"
>
{{ page$.value }}/{{ pageMax$ | async }}
Expand Down

0 comments on commit 23b527e

Please sign in to comment.