mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
fix: prevent double default covers
This commit is contained in:
parent
213ae815fd
commit
f1b0a62009
1 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,7 @@
|
|||
@dragstart="dragStart"
|
||||
@contextmenu.prevent="requestContextMenu"
|
||||
>
|
||||
<span class="thumbnail-wrapper" :style="{ backgroundImage: `url(${defaultCover})` }">
|
||||
<span class="thumbnail-wrapper">
|
||||
<ArtistThumbnail :entity="artist"/>
|
||||
</span>
|
||||
|
||||
|
@ -57,7 +57,7 @@
|
|||
|
||||
<script lang="ts" setup>
|
||||
import { computed, defineAsyncComponent, toRef, toRefs } from 'vue'
|
||||
import { defaultCover, eventBus, pluralize, startDragging } from '@/utils'
|
||||
import { eventBus, pluralize, startDragging } from '@/utils'
|
||||
import { artistStore, commonStore, songStore } from '@/stores'
|
||||
import { downloadService, playbackService } from '@/services'
|
||||
|
||||
|
|
Loading…
Reference in a new issue