remove test header from queue page

This commit is contained in:
geoffrey45
2022-09-21 16:54:24 +03:00
committed by Mungai Njoroge
parent 45d91f0382
commit 09453fc419
3 changed files with 11 additions and 52 deletions
+2 -1
View File
@@ -7,7 +7,7 @@
@scroll="handleScroll"
>
<div v-bind="wrapperProps" class="scrollable">
<div class="header rounded" style="height: 64px">
<div class="header rounded" style="height: 64px" v-if="!no_header">
<div
ref="header"
:style="{ top: -headerHeight + 64 - 16 + 'px' }"
@@ -51,6 +51,7 @@ import SongItem from "@/components/shared/SongItem.vue";
const props = defineProps<{
tracks: Track[];
on_album_page?: boolean;
no_header?: boolean;
}>();
const emit = defineEmits<{