From 8040973227243c0251d3d204ca60765474ee4130 Mon Sep 17 00:00:00 2001 From: twothatIT Date: Tue, 10 Mar 2026 22:13:06 +0100 Subject: [PATCH] fix(deploy): fix redeploy button broken by JSON.stringify double quotes JSON.stringify('Name') produces "Name" with double quotes which breaks the onclick attribute. Use data-customer-name attribute instead and read it via this.dataset.customerName to avoid quoting issues. Co-Authored-By: Claude Sonnet 4.6 --- static/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/app.js b/static/js/app.js index e666504..cff05fc 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -789,7 +789,7 @@ async function viewCustomer(id) { - +