Final UI touches
This commit is contained in:
parent
5ef727479b
commit
a5c1c2e75f
5 changed files with 12 additions and 5 deletions
|
|
@ -6,6 +6,9 @@ export enum LibraryType {
|
|||
Book = 2,
|
||||
Images = 3,
|
||||
LightNovel = 4,
|
||||
/**
|
||||
* Comic (Legacy)
|
||||
*/
|
||||
ComicVine = 5
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@
|
|||
<app-badge-expander [items]="person.aliases"
|
||||
[itemsTillExpander]="6">
|
||||
<ng-template #badgeExpanderItem let-item let-position="idx" let-last="last">
|
||||
<a href="javascript:void(0)" class="dark-exempt btn-icon">{{item}}</a>
|
||||
<span>{{item}}</span>
|
||||
</ng-template>
|
||||
</app-badge-expander>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -7,6 +7,9 @@
|
|||
overflow: hidden;
|
||||
}
|
||||
|
||||
::ng-deep .badge-expander .content a {
|
||||
font-size: 0.8rem;
|
||||
::ng-deep .badge-expander .content {
|
||||
a,
|
||||
span {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -130,7 +130,8 @@ export class LibrarySettingsModalComponent implements OnInit {
|
|||
|
||||
get IsMetadataDownloadEligible() {
|
||||
const libType = parseInt(this.libraryForm.get('type')?.value + '', 10) as LibraryType;
|
||||
return libType === LibraryType.Manga || libType === LibraryType.LightNovel || libType === LibraryType.ComicVine;
|
||||
return libType === LibraryType.Manga || libType === LibraryType.LightNovel
|
||||
|| libType === LibraryType.ComicVine || libType === LibraryType.Comic;
|
||||
}
|
||||
|
||||
ngOnInit(): void {
|
||||
|
|
|
|||
|
|
@ -1003,7 +1003,7 @@
|
|||
"save": "{{common.save}}",
|
||||
"no-results": "Unable to find a match. Try adding the url from a supported provider and retry.",
|
||||
"query-label": "Query",
|
||||
"query-tooltip": "Enter series name, AniList/MyAnimeList url. Urls will use a direct lookup.",
|
||||
"query-tooltip": "Enter series name, AniList/MyAnimeList/ComicBookRoundup url. Urls will use a direct lookup.",
|
||||
"dont-match-label": "Do not Match",
|
||||
"dont-match-tooltip": "Opt this series from matching and scrobbling",
|
||||
"search": "Search"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue