mirror of
https://github.com/gotson/komga.git
synced 2026-05-08 12:35:30 +02:00
fix(webui): remove hash prefix for book numbers
This commit is contained in:
parent
0ac9f24245
commit
114f55fe86
2 changed files with 2 additions and 2 deletions
|
|
@ -61,7 +61,7 @@ export class BookItem extends Item<BookDto> {
|
||||||
|
|
||||||
title (): string {
|
title (): string {
|
||||||
const m = this.item.metadata
|
const m = this.item.metadata
|
||||||
return `#${m.number} - ${m.title}`
|
return `${m.number} - ${m.title}`
|
||||||
}
|
}
|
||||||
|
|
||||||
body (): string {
|
body (): string {
|
||||||
|
|
|
||||||
|
|
@ -100,7 +100,7 @@
|
||||||
|
|
||||||
<v-row class="text-body-2">
|
<v-row class="text-body-2">
|
||||||
<v-col>
|
<v-col>
|
||||||
<span class="mx-3">#{{ book.metadata.number }}</span>
|
<span class="mx-3">{{ book.metadata.number }}</span>
|
||||||
</v-col>
|
</v-col>
|
||||||
<v-col cols="auto" v-if="book.metadata.releaseDate">
|
<v-col cols="auto" v-if="book.metadata.releaseDate">
|
||||||
{{ book.metadata.releaseDate | moment('MMMM DD, YYYY') }}
|
{{ book.metadata.releaseDate | moment('MMMM DD, YYYY') }}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue