diff --git a/web-src/src/lib/GroupByList.js b/web-src/src/lib/GroupedList.js similarity index 99% rename from web-src/src/lib/GroupByList.js rename to web-src/src/lib/GroupedList.js index bbe8dad9..3ae6f492 100644 --- a/web-src/src/lib/GroupByList.js +++ b/web-src/src/lib/GroupedList.js @@ -108,13 +108,12 @@ export function byDateSinceToday(field, defaultValue = '0000') { } } -export class GroupByList { +export class GroupedList { constructor({ items = [], total = 0, offset = 0, limit = -1 } = {}) { this.items = items this.total = total this.offset = offset this.limit = limit - this.count = items.length this.indexList = [] this.group(noop()) diff --git a/web-src/src/pages/PageAlbum.vue b/web-src/src/pages/PageAlbum.vue index a19071d3..6b125840 100644 --- a/web-src/src/pages/PageAlbum.vue +++ b/web-src/src/pages/PageAlbum.vue @@ -47,7 +47,7 @@