fix(webui): remove hash prefix for book numbers

This commit is contained in:
Gauthier Roebroeck 2021-02-24 09:51:12 +08:00
parent 0ac9f24245
commit 114f55fe86
2 changed files with 2 additions and 2 deletions

View file

@ -61,7 +61,7 @@ export class BookItem extends Item<BookDto> {
title (): string {
const m = this.item.metadata
return `#${m.number} - ${m.title}`
return `${m.number} - ${m.title}`
}
body (): string {

View file

@ -100,7 +100,7 @@
<v-row class="text-body-2">
<v-col>
<span class="mx-3">#{{ book.metadata.number }}</span>
<span class="mx-3">{{ book.metadata.number }}</span>
</v-col>
<v-col cols="auto" v-if="book.metadata.releaseDate">
{{ book.metadata.releaseDate | moment('MMMM DD, YYYY') }}