From 3a80ba09af906c93bd4efcd401072769642bdb29 Mon Sep 17 00:00:00 2001 From: kodi Date: Sun, 1 Mar 2026 11:09:18 +0100 Subject: [PATCH] feat(ui): ondersteuning Containerfile zichtbaar in build UI - Label aangepast naar 'Dockerfile/Containerfile' - Picker-titel aangepast naar 'Kies Dockerfile/Containerfile' - Default waarde van buildDockerfile input leeggemaakt - Validatiemelding aangepast naar 'Dockerfile/Containerfile' Geen backend- of API-wijzigingen; dockerfile blijft leidend veld. --- webui/html/assets/js/tabs/images.js | 4 ++-- webui/html/index.html | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/webui/html/assets/js/tabs/images.js b/webui/html/assets/js/tabs/images.js index 0285e88..6ed3cd4 100644 --- a/webui/html/assets/js/tabs/images.js +++ b/webui/html/assets/js/tabs/images.js @@ -142,7 +142,7 @@ async function buildImage() { const outputBox = document.getElementById("buildOutput"); if (!context || !dockerfile || !tag) { - alert("Vul context_dir, dockerfile en tag in."); + alert("Vul context_dir, Dockerfile/Containerfile en tag in."); return; } @@ -400,4 +400,4 @@ function updateSortIndicators() { if (el) { el.textContent = imagesSort.dir === "asc" ? "▲" : "▼"; } -} \ No newline at end of file +} diff --git a/webui/html/index.html b/webui/html/index.html index 4db1234..c26cc43 100644 --- a/webui/html/index.html +++ b/webui/html/index.html @@ -344,9 +344,9 @@
- +
- +
@@ -383,7 +383,7 @@