From 85fa7941fb41d1e5e282e9fd9951c718d675f4ab Mon Sep 17 00:00:00 2001 From: Mike Morton Date: Tue, 12 Jul 2022 22:46:12 -0700 Subject: [PATCH] Fix case on image_URL --- src/views/index.pug | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/index.pug b/src/views/index.pug index 0d1159b..f6936dc 100644 --- a/src/views/index.pug +++ b/src/views/index.pug @@ -6,10 +6,10 @@ block content each album in albums div(class="item") div(class="ui image small") - img(src=album.image_url) + img(src=album.image_URL) div(class="content") div(class="header") span(class="album-title")=album.title div(class="meta") span(class="meta-info")=album.artist - span(class="meta-info")=album.price \ No newline at end of file + span(class="meta-info")=album.price