This commit is contained in:
jonaswinkler 2020-12-07 12:46:46 +01:00
parent 18c9c22941
commit 0c396dfd48

View File

@ -29,8 +29,12 @@ export class SavedViewWidgetComponent implements OnInit {
} }
showAll() { showAll() {
this.list.load(this.savedView) if (this.savedView.showInSideBar) {
this.router.navigate(["documents"]) this.router.navigate(['view', this.savedView.id])
} else {
this.list.load(this.savedView)
this.router.navigate(["documents"])
}
} }
} }