mirror of
https://github.com/gotson/komga.git
synced 2025-12-28 19:39:20 +01:00
parent
09bc445605
commit
d50646f955
3 changed files with 3 additions and 0 deletions
|
|
@ -973,6 +973,7 @@
|
|||
"name": "Name",
|
||||
"number": "Number",
|
||||
"page_count": "Page count",
|
||||
"random": "Random",
|
||||
"release_date": "Release date"
|
||||
},
|
||||
"theme": {
|
||||
|
|
|
|||
|
|
@ -329,6 +329,7 @@ export default Vue.extend({
|
|||
{name: this.$t('sort.release_date').toString(), key: 'booksMetadata.releaseDate'},
|
||||
{name: this.$t('sort.folder_name').toString(), key: 'name'},
|
||||
{name: this.$t('sort.books_count').toString(), key: 'booksCount'},
|
||||
{name: this.$t('sort.random').toString(), key: 'random'},
|
||||
] as SortOption[]
|
||||
},
|
||||
filterOptionsList(): FiltersOptions {
|
||||
|
|
|
|||
|
|
@ -94,6 +94,7 @@ class SeriesDtoDao(
|
|||
"collection.number" to cs.NUMBER,
|
||||
"name" to s.NAME.collate(SqliteUdfDataSource.COLLATION_UNICODE_3),
|
||||
"booksCount" to s.BOOK_COUNT,
|
||||
"random" to DSL.rand(),
|
||||
)
|
||||
|
||||
override fun findAll(pageable: Pageable): Page<SeriesDto> = findAll(SeriesSearch(), SearchContext.ofAnonymousUser(), pageable)
|
||||
|
|
|
|||
Loading…
Reference in a new issue