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:
geoffrey45
2022-08-15 10:25:34 +03:00
parent 1f374eeda1
commit e1c9cfa99b
17 changed files with 122 additions and 79 deletions
+2 -2
View File
@@ -8,7 +8,7 @@
highlighted: isHighlighted,
},
]"
v-bind:class="`track-${track.uniq_hash}`"
v-bind:class="`track-${track.hash}`"
@dblclick="emitUpdate(track)"
@contextmenu.prevent="showMenu"
>
@@ -75,10 +75,10 @@ import { ref } from "vue";
import OptionSvg from "@/assets/icons/more.svg";
import { showTrackContextMenu as showContext } from "@/composables/context";
import { paths } from "@/config";
import { Track } from "@/interfaces";
import { formatSeconds, putCommas } from "@/utils";
import { showTrackContextMenu as showContext } from "@/composables/context";
const context_on = ref(false);
const imguri = paths.images.thumb;