mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
add experimental remove from queue action
+ show albumartist on TrackItem if artists == "" + add action to reset playlist page artists to prevent content flashes + remove use of defaultTrackItem
This commit is contained in:
+2
-2
@@ -47,7 +47,7 @@ const queue = useQStore();
|
||||
const router = useRouter();
|
||||
const modal = useModalStore();
|
||||
const context_store = useContextStore();
|
||||
const app_dom = document.getElementById("app");
|
||||
const app_dom = document.getElementById("app") as HTMLElement;
|
||||
|
||||
queue.readQueue();
|
||||
handleShortcuts(useQStore);
|
||||
@@ -59,7 +59,7 @@ app_dom.addEventListener("click", (e) => {
|
||||
});
|
||||
|
||||
router.afterEach(() => {
|
||||
document.getElementById("acontent")?.scrollTo(0, 0);
|
||||
(document.getElementById("acontent") as HTMLElement).scrollTo(0, 0);
|
||||
});
|
||||
|
||||
onStartTyping(() => {
|
||||
|
||||
Reference in New Issue
Block a user