mirror of
https://github.com/gotson/komga.git
synced 2025-01-07 03:07:16 +08:00
parent
09bc445605
commit
d50646f955
@ -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 New Issue
Block a user