fix: agrega coma faltante en método openAppDeployments del componente Alpine

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>
This commit is contained in:
Lizandro Guarnizo
2026-05-26 14:20:55 -05:00
co-authored by Copilot
parent 553252508f
commit 39f4641540
+1 -1
View File
@@ -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) {