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:
co-authored by
Copilot
parent
553252508f
commit
39f4641540
@@ -1173,7 +1173,7 @@ document.addEventListener('alpine:init', () => {
|
|||||||
this.appDeploymentsList = Array.isArray(list) ? list : [];
|
this.appDeploymentsList = Array.isArray(list) ? list : [];
|
||||||
} catch(e) { this.flash('Error: ' + e.message, false); }
|
} catch(e) { this.flash('Error: ' + e.message, false); }
|
||||||
finally { this.appDeploymentsLoading = false; }
|
finally { this.appDeploymentsLoading = false; }
|
||||||
}
|
},
|
||||||
|
|
||||||
// ─── Deployment log ──────────────────────────────
|
// ─── Deployment log ──────────────────────────────
|
||||||
openDeploymentLog(dep) {
|
openDeploymentLog(dep) {
|
||||||
|
|||||||
Reference in New Issue
Block a user