Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(formapi): Ajout d'un message notifiant qu'il n'y a aucune donnée… #65

Open
wants to merge 1 commit into
base: Api_telechargement
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Il faudrait utiliser le fichier de traduction et au moins le traduire en anglais

</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
Loading