From 39f46415405f78a5961c9b02658880b4d7db720c Mon Sep 17 00:00:00 2001 From: Lizandro Guarnizo <77708265+lizandrogd@users.noreply.github.com> Date: Tue, 26 May 2026 14:20:55 -0500 Subject: [PATCH] =?UTF-8?q?fix:=20agrega=20coma=20faltante=20en=20m=C3=A9t?= =?UTF-8?q?odo=20openAppDeployments=20del=20componente=20Alpine?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit El objeto Alpine.js tenía un } sin coma al final de openAppDeployments, causando un error de sintaxis JS que impedía la inicialización del componente y hacía que la página /app/coolify apareciera completamente en blanco. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- resources/views/coolify.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/coolify.html b/resources/views/coolify.html index 80726c9..6b4b38f 100644 --- a/resources/views/coolify.html +++ b/resources/views/coolify.html @@ -1173,7 +1173,7 @@ document.addEventListener('alpine:init', () => { this.appDeploymentsList = Array.isArray(list) ? list : []; } catch(e) { this.flash('Error: ' + e.message, false); } finally { this.appDeploymentsLoading = false; } - } + }, // ─── Deployment log ────────────────────────────── openDeploymentLog(dep) {