Convert observables to signals.

This commit is contained in:
Florian THIERRY
2026-02-03 11:00:29 +01:00
parent a2de24fd93
commit c91bb7b720
100 changed files with 2998 additions and 3065 deletions

View File

@@ -1,11 +1,11 @@
<h1 i18n>Last publications</h1>
@if ((isLoading())) {
<h2 i18n>Publications loading...</h2>
<mat-spinner />
<h2 i18n>Publications loading...</h2>
<mat-spinner/>
} @else {
@if (publications(); as publications) {
<app-publication-list [publications]="publications" />
} @else {
<h2 i18n>No any publication.</h2>
}
@if (publications(); as publications) {
<app-publication-list [publications]="publications"/>
} @else {
<h2 i18n>No any publication.</h2>
}
}