mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-03-11 03:49:07 +00:00
Replaced no-image with svg
This commit is contained in:
@@ -7,7 +7,7 @@
|
|||||||
@click="openMoviePopup"
|
@click="openMoviePopup"
|
||||||
:alt="posterAltText"
|
:alt="posterAltText"
|
||||||
:data-src="poster"
|
:data-src="poster"
|
||||||
src="~assets/placeholder.png"
|
src="/assets/placeholder.png"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<div v-if="movie.download" class="progress">
|
<div v-if="movie.download" class="progress">
|
||||||
@@ -77,7 +77,7 @@ export default {
|
|||||||
if (this.movie.poster != null) {
|
if (this.movie.poster != null) {
|
||||||
this.poster = "https://image.tmdb.org/t/p/w500" + this.movie.poster;
|
this.poster = "https://image.tmdb.org/t/p/w500" + this.movie.poster;
|
||||||
} else {
|
} else {
|
||||||
this.poster = "/assets/no-image.png";
|
this.poster = "/assets/no-image.svg";
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
|||||||
Reference in New Issue
Block a user