From e50e7ad3d57f77ca665886bcd2810693d480d4c9 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Fri, 5 Sep 2025 16:45:01 +0800 Subject: [PATCH] fix: ensure deep copy of config_data before posting --- dashboard/src/views/ConfigPage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/views/ConfigPage.vue b/dashboard/src/views/ConfigPage.vue index 94bb8b575..4147c7623 100644 --- a/dashboard/src/views/ConfigPage.vue +++ b/dashboard/src/views/ConfigPage.vue @@ -481,7 +481,7 @@ export default { if (!this.fetched) return; const postData = { - config: this.config_data + config: JSON.parse(JSON.stringify(this.config_data)), }; if (this.isSystemConfig) {