Skip to content

Commit

Permalink
Affichage du nombre de produits/données disponibles #7
Browse files Browse the repository at this point in the history
  • Loading branch information
Naminoshin committed Jun 12, 2024
1 parent 971aecd commit 2c50df9
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion libs/feature/record/src/lib/ign-api-dl/ign-api-dl.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,18 @@
class="sticky z-10 top-0 text-sm leading-6 font-semibold text-slate-700 bg-white p-0 dark:bg-slate-900 dark:text-slate-300"
>
<div
*ngIf="pageSize$.value < (numberFilteredProduct$ | async)"
class="py-2 pr-2 text-xl border-b border-slate-200 dark:border-slate-400/20"
>
Produits ({{ numberFilteredProduct$ | async }}):

Produits ({{pageSize$.value}}/{{numberFilteredProduct$ | async }}):
</div>
<div
*ngIf="pageSize$.value > (numberFilteredProduct$ | async)"
class="py-2 pr-2 text-xl border-b border-slate-200 dark:border-slate-400/20"
>

Produits ({{numberFilteredProduct$ | async }}/{{numberFilteredProduct$ | async }}):
</div>
</tr>
</thead>
Expand Down

0 comments on commit 2c50df9

Please sign in to comment.