From 23a55e025c022d14af78c25339447f157163b19a Mon Sep 17 00:00:00 2001 From: Kobe Date: Mon, 23 Jun 2025 15:05:07 +0200 Subject: [PATCH] Update launch_progress.js --- static/js/launch_progress.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/static/js/launch_progress.js b/static/js/launch_progress.js index 2c62aa8..e41bb77 100644 --- a/static/js/launch_progress.js +++ b/static/js/launch_progress.js @@ -2014,7 +2014,9 @@ async function downloadDockerCompose(repo, branch) { const result = await response.json(); return { success: true, - content: result.content + content: result.content, + commit_hash: result.commit_hash, + latest_tag: result.latest_tag }; } catch (error) { console.error('Error downloading docker-compose.yml:', error);