more face lifting
This commit is contained in:
parent
b25ee6dad8
commit
7a2a4a5269
1 changed files with 6 additions and 6 deletions
|
|
@ -100,14 +100,14 @@
|
|||
<div class="play-icon"></div>
|
||||
<img
|
||||
:src="config.app.url_host + config.app.url_prefix + 'api/thumbnail?url=' + encodePath(item.extras.thumbnail)"
|
||||
:alt="item.title" v-if="item.extras?.thumbnail" />
|
||||
<img v-else src="/images/placeholder.png" :alt="item.title" />
|
||||
v-if="item.extras?.thumbnail" />
|
||||
<img v-else src="/images/placeholder.png" />
|
||||
</span>
|
||||
<NuxtLink v-else target="_blank" :href="item.url" v-tooltip="`Open: ${item.title} link`">
|
||||
<img :alt="item.title" v-if="item.extras?.thumbnail"
|
||||
<template v-else>
|
||||
<img v-if="item.extras?.thumbnail"
|
||||
:src="config.app.url_host + config.app.url_prefix + 'api/thumbnail?url=' + encodePath(item.extras.thumbnail)" />
|
||||
<img v-else src="/images/placeholder.png" :alt="item.title" />
|
||||
</NuxtLink>
|
||||
<img v-else src="/images/placeholder.png" />
|
||||
</template>
|
||||
</figure>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
|
|
|
|||
Loading…
Reference in a new issue