From ae896002019022db6cb872caf59d9f35a045c48c Mon Sep 17 00:00:00 2001 From: Alex X Date: Thu, 27 Feb 2025 15:01:05 +0300 Subject: [PATCH] Fix WebUI editor after Save --- www/editor.html | 1 + 1 file changed, 1 insertion(+) diff --git a/www/editor.html b/www/editor.html index fdb56213..cb455f4d 100644 --- a/www/editor.html +++ b/www/editor.html @@ -46,6 +46,7 @@ r = await fetch('api/config', {method: 'POST', body: editor.getValue()}); if (r.ok) { alert('OK'); + dump = editor.getValue(); await fetch('api/restart', {method: 'POST'}); } else { alert(await r.text());