diff --git a/src/state/models/navigation.ts b/src/state/models/navigation.ts index d5338ac0..d984a536 100644 --- a/src/state/models/navigation.ts +++ b/src/state/models/navigation.ts @@ -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, diff --git a/todos.txt b/todos.txt index 848a2234..fd68f690 100644 --- a/todos.txt +++ b/todos.txt @@ -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 \ No newline at end of file + - Check that sub components arent reloading too much \ No newline at end of file