app/templates/index.html aktualisiert
docker-build-and-push / build (push) Successful in 19s

This commit is contained in:
2026-08-03 15:21:57 +02:00
parent f391798a00
commit 41014dadf9
+1 -4
View File
@@ -25,10 +25,7 @@ async function loadRepos() {
const res = await fetch("/api/repos");
const repos = await res.json();
const container = document.getElementById("repos");
// Pruefe ob Repo schon existiert
const checkRepoStatus = (repo) => {
fetch(`/api/repos/${repo.id}/status`).then(r => r.json())
}
container.innerHTML = "";
repos.forEach(repo => {
const card = document.createElement("div");