From 03bbb5781a7138b99623b2c866a02415afb54f4d Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Sat, 5 Mar 2022 12:57:20 +0100 Subject: [PATCH] CastPerson fallback image large text no-image --- src/components/CastPerson.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/CastPerson.vue b/src/components/CastPerson.vue index c7b0c5e..73e6b08 100644 --- a/src/components/CastPerson.vue +++ b/src/components/CastPerson.vue @@ -31,7 +31,7 @@ export default { const { profile_path } = this.person; if (profile_path) return "https://image.tmdb.org/t/p/w185" + profile_path; - return ""; + return "/assets/no-image_small.svg"; } } };