fix: ensure deep copy of config_data before posting
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user