mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
feat: separate discs in album page
+ remove tooltip markup + refactor css classnames
This commit is contained in:
committed by
Mungai Njoroge
parent
278439eee8
commit
977d9282cb
+7
-4
@@ -1,6 +1,11 @@
|
||||
import { FromOptions, NotifType } from "./composables/enums";
|
||||
|
||||
export interface Track {
|
||||
export interface AlbumDisc {
|
||||
is_album_disc_number?: boolean;
|
||||
album_page_disc_number?: number;
|
||||
}
|
||||
|
||||
export interface Track extends AlbumDisc {
|
||||
trackid: string;
|
||||
title: string;
|
||||
album?: string;
|
||||
@@ -18,7 +23,7 @@ export interface Track {
|
||||
index: number;
|
||||
hash: string;
|
||||
copyright?: string;
|
||||
filetype: string
|
||||
filetype: string;
|
||||
}
|
||||
|
||||
export interface Folder {
|
||||
@@ -116,5 +121,3 @@ export interface FuseResult {
|
||||
item: Track;
|
||||
refIndex: number;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user