+
+
+
+
+
+ {{ symbol }}
+
+
+ {{ getCount(symbol) }}
+
+
+
+
+
+
diff --git a/komga-webui/src/services/komga-series.service.ts b/komga-webui/src/services/komga-series.service.ts
index 3b2008a05..98d0b733e 100644
--- a/komga-webui/src/services/komga-series.service.ts
+++ b/komga-webui/src/services/komga-series.service.ts
@@ -1,6 +1,6 @@
import {AxiosInstance} from 'axios'
import {AuthorDto, BookDto} from '@/types/komga-books'
-import {SeriesDto, SeriesMetadataUpdateDto} from '@/types/komga-series'
+import {GroupCountDto, SeriesDto, SeriesMetadataUpdateDto} from '@/types/komga-series'
const qs = require('qs')
@@ -9,17 +9,19 @@ const API_SERIES = '/api/v1/series'
export default class KomgaSeriesService {
private http: AxiosInstance
- constructor (http: AxiosInstance) {
+ constructor(http: AxiosInstance) {
this.http = http
}
- async getSeries (libraryId?: string, pageRequest?: PageRequest, search?: string, status?: string[],
- readStatus?: string[], genre?: string[], tag?: string[], language?: string[],
- publisher?: string[], ageRating?: string[], releaseDate?: string[], authors?: AuthorDto[]): Promise