Fix bug in selection of screens to cache

This commit is contained in:
Paul Frazee
2022-09-01 13:30:57 -05:00
parent 558f8010eb
commit 2eac309f86
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ export class NavigationTabModel {
getBackList(n: number) {
const start = Math.max(this.index - n, 0)
const end = Math.min(this.index, n)
const end = this.index
return this.history.slice(start, end).map((item, i) => ({
url: item.url,
title: item.title,
+1 -2
View File
@@ -13,5 +13,4 @@ Paul's todo list
- Followers list
- Follows list
- Bugs
- Check that sub components arent reloading too much
- Check that caching is choosing the right views
- Check that sub components arent reloading too much