diff --git a/views/index.html b/views/index.html index 2e6fdd1..76f49a7 100644 --- a/views/index.html +++ b/views/index.html @@ -392,7 +392,8 @@ .then(items => { for (let item of items) { if (!this.items.some(i => i.ID == item.ID)) { - this.items.push(item); + this.items.unshift(item); + this.setPageTitle(); } } })