Fix app icons in archive listing

This commit is contained in:
Johannes Zellner
2025-04-24 23:12:11 +02:00
parent 1f93cce2c5
commit 28372af5a9

View File

@@ -47,7 +47,7 @@ async function refreshArchives() {
// ensure we use the full api oprigin
result.forEach(a => {
a.iconUrl = window.cloudronApiOrigin + a.iconUrl;
a.iconUrl = API_ORIGIN + a.iconUrl;
});
archives.value = result;