mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +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"
|
@dragstart="dragStart"
|
||||||
@contextmenu.prevent="requestContextMenu"
|
@contextmenu.prevent="requestContextMenu"
|
||||||
>
|
>
|
||||||
<span class="thumbnail-wrapper" :style="{ backgroundImage: `url(${defaultCover})` }">
|
<span class="thumbnail-wrapper">
|
||||||
<ArtistThumbnail :entity="artist"/>
|
<ArtistThumbnail :entity="artist"/>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { computed, defineAsyncComponent, toRef, toRefs } from 'vue'
|
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 { artistStore, commonStore, songStore } from '@/stores'
|
||||||
import { downloadService, playbackService } from '@/services'
|
import { downloadService, playbackService } from '@/services'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue