Convert observables to signals.

This commit is contained in:
Florian THIERRY
2026-02-02 17:51:49 +01:00
parent ebe46a0d11
commit a2de24fd93
9 changed files with 36 additions and 36 deletions
@@ -9,13 +9,13 @@
+
</a>
@if ((isLoading$ | async) === true) {
@if (isLoading()) {
<h2 i18n>Publication loading...</h2>
<mat-spinner></mat-spinner>
} @else {
@if ((isLoaded$ | async) === true) {
<app-publication-list [publications$]="publications$"></app-publication-list>
@if (isLoaded()) {
<app-publication-list [publications]="publications()"></app-publication-list>
} @else {
<h2 i18n>There is no any publication...</h2>
}
}
}