From 52e53330f61570b15f1a8e52f21789c7eed12e07 Mon Sep 17 00:00:00 2001 From: Yarne Coppens Date: Sun, 29 Sep 2024 16:52:19 +0200 Subject: [PATCH] Reformed to use new API icon structure --- static/scripts/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/scripts/main.js b/static/scripts/main.js index ae14e39..d077d27 100644 --- a/static/scripts/main.js +++ b/static/scripts/main.js @@ -32,7 +32,7 @@ async function loadCash(price) { new_column.classList.add('col') const bill_image = document.createElement('img') bill_image.classList.add('cash_image') - bill_image.src = api_url + '/icons/' + bill_type + bill_image.src = api_url + '/icons/cash/' + bill_type new_column.appendChild(bill_image) cash_bills_row.appendChild(new_column)