Direct signals in lots more components

This commit is contained in:
shamoon
2026-07-08 16:43:13 -07:00
parent 08871964c3
commit b84b877773
46 changed files with 245 additions and 477 deletions
@@ -54,7 +54,7 @@ export class TrashComponent
}
reload() {
this.loading = true
this.loading.set(true)
this.trashService
.getTrash(this.page())
.pipe(
@@ -62,11 +62,11 @@ export class TrashComponent
this.documentsInTrash.set(r.results)
this.totalDocuments.set(r.count)
this.selectedDocuments.set(new Set())
this.loading = false
this.loading.set(false)
})
)
.subscribe(() => {
this.show = true
this.show.set(true)
})
}