Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
This commit is contained in:
Joe Milazzo 2024-08-20 19:09:30 -05:00 committed by GitHub
parent 7ca523adef
commit 38fc8e9110
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
103 changed files with 1643 additions and 1079 deletions

View file

@ -146,7 +146,7 @@ export class CardDetailDrawerComponent implements OnInit {
this.chapterActions = this.actionFactoryService.getChapterActions(this.handleChapterActionCallback.bind(this))
.filter(item => item.action !== Action.Edit);
this.chapterActions.push({title: 'read', description: 'read-tooltip', action: Action.Read, callback: this.handleChapterActionCallback.bind(this), requiresAdmin: false, children: []});
this.chapterActions.push({title: 'read', description: '', action: Action.Read, callback: this.handleChapterActionCallback.bind(this), requiresAdmin: false, children: []});
if (this.isChapter) {
const chapter = this.utilityService.asChapter(this.data);
this.chapterActions = this.actionFactoryService.filterSendToAction(this.chapterActions, chapter);

View file

@ -1,4 +1,4 @@
$image-height: 230px;
$image-height: 232.91px;
$image-width: 160px;
.card-img-top {

View file

@ -37,11 +37,19 @@
}
@case (LibraryType.Book) {
{{volumeTitle}}
@if (titleName !== '' && prioritizeTitleName) {
{{titleName}}
} @else {
{{volumeTitle}}
}
}
@case (LibraryType.LightNovel) {
{{volumeTitle}}
@if (titleName !== '' && prioritizeTitleName) {
{{titleName}}
} @else {
{{volumeTitle}}
}
}
@case (LibraryType.Images) {

View file

@ -227,7 +227,7 @@ export class SeriesCardComponent implements OnInit, OnChanges {
this.scanLibrary(series);
break;
case(Action.RefreshMetadata):
this.refreshMetadata(series);
this.refreshMetadata(series, true);
break;
case(Action.GenerateColorScape):
this.refreshMetadata(series, false);

View file

@ -60,7 +60,7 @@
<div class="card-title-container">
<span class="card-title" id="{{volume.id}}" tabindex="0">
<a class="dark-exempt btn-icon" routerLink="/library/{{libraryId}}/series/{{seriesId}}/chapter/{{volume.id}}">
<a class="dark-exempt btn-icon" routerLink="/library/{{libraryId}}/series/{{seriesId}}/volume/{{volume.id}}">
{{volume.name}}
</a>
</span>