Shorten Docker socket helper text, fix Pick container alignment, fix summary bar wrapping (v0.16.26)

This commit is contained in:
marvin
2026-09-19 13:26:41 -04:00
parent 79fd947adb
commit 7e8e604df3
6 changed files with 12 additions and 10 deletions
+1 -1
View File
@@ -514,7 +514,7 @@ function renderDockerPanel() {
toggle.disabled = !socketMounted;
tile.querySelector(".status-dot").className = `status-dot ${socketMounted ? "running" : "idle"}`;
tile.querySelector("#docker-integration-help").textContent = socketMounted
? "Site Gateway reads the Docker socket read-only to list running containers, and only offers containers that share a Docker network with it."
? "Site Gateway reads the Docker socket read-only to list running containers."
: "Docker socket not detected — mount /var/run/docker.sock into this container to enable container selection.";
control.classList.toggle("is-disabled", !socketMounted);
}