From 9a57925c63e908f393b2b9c2b1e58b3a25a8f0a7 Mon Sep 17 00:00:00 2001 From: Refringe Date: Tue, 28 Jan 2025 22:44:17 -0500 Subject: [PATCH] Mod Detail Page Thumbnail Bug This resolves an issue where the mod detail page would attempt to show an image if one did not exist, and would show a placeholder if the image did exist. --- resources/views/mod/show.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/mod/show.blade.php b/resources/views/mod/show.blade.php index 8b58177..d1bb731 100644 --- a/resources/views/mod/show.blade.php +++ b/resources/views/mod/show.blade.php @@ -17,9 +17,9 @@
@if ($mod->thumbnail) - {{ $mod->name }} - @else {{ $mod->name }} + @else + {{ $mod->name }} @endif