Fix bug in selection of screens to cache
This commit is contained in:
parent
bb51af5ae9
commit
5f48cb5e27
2 changed files with 2 additions and 3 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue