From b33afb41dc90cea493b84260f124239dfa989207 Mon Sep 17 00:00:00 2001 From: nearxos Date: Fri, 20 Feb 2026 09:43:41 +0200 Subject: [PATCH] Fix typo in confirmation dialog for file deletion in portal_files.html template. --- .../emmc-provisioning/dashboard/templates/portal_files.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chromium-setup/emmc-provisioning/dashboard/templates/portal_files.html b/chromium-setup/emmc-provisioning/dashboard/templates/portal_files.html index 3d33227..eacb8f5 100644 --- a/chromium-setup/emmc-provisioning/dashboard/templates/portal_files.html +++ b/chromium-setup/emmc-provisioning/dashboard/templates/portal_files.html @@ -158,7 +158,7 @@ btn.onclick = function() { var path = btn.getAttribute('data-path'); var type = btn.getAttribute('data-type'); - if (!confirm('Delete ' + type + ' “‘ + path + '”?')) return; + if (!confirm('Delete ' + type + ' "' + path + '"?')) return; authFetch('/api/portal-files/' + encodeURIComponent(path), { method: 'DELETE' }).then(function(r) { return r.json(); }).then(function(d) { if (d.ok) fetchPortal(); else alert(d.error || 'Delete failed'); });