fix: ensure deep copy of config_data before posting

This commit is contained in:
Soulter
2025-09-05 16:45:01 +08:00
parent 45a4a6b6da
commit e50e7ad3d5
+1 -1
View File
@@ -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) {