refactored most of the list view; fixes #147, much snappier UX when switching between views

This commit is contained in:
jonaswinkler
2021-02-18 17:29:21 +01:00
parent 0e237fa459
commit 0f80eee54e
6 changed files with 163 additions and 125 deletions

View File

@@ -48,7 +48,7 @@ export class SavedViewWidgetComponent implements OnInit, OnDestroy {
if (this.savedView.show_in_sidebar) {
this.router.navigate(['view', this.savedView.id])
} else {
this.list.load(this.savedView)
this.list.loadSavedView(this.savedView, true)
this.router.navigate(["documents"])
}
}