|
@@ -123,7 +123,7 @@ export default {
|
|
|
role_name: "Admin",
|
|
|
role_description: "",
|
|
|
role_permissions:"['read', 'write', 'delete']",
|
|
|
- custom_variables:'',
|
|
|
+ custom_variables:"",
|
|
|
custom_prompt:'',
|
|
|
application_type: "",
|
|
|
is_default: false,
|
|
@@ -219,7 +219,7 @@ export default {
|
|
|
role_name: "Admin",
|
|
|
role_description: "",
|
|
|
role_permissions: "['read', 'write', 'delete']",
|
|
|
- custom_variables:'',
|
|
|
+ custom_variables:"",
|
|
|
custom_prompt:'',
|
|
|
application_type: "",
|
|
|
is_default: false,
|
|
@@ -337,7 +337,7 @@ export default {
|
|
|
if (this.editForm.custom_variables) {
|
|
|
this.editForm.custom_variables = JSON.stringify(this.editForm.custom_variables);
|
|
|
} else {
|
|
|
- this.editForm.custom_variables = {};
|
|
|
+ this.editForm.custom_variables = "";
|
|
|
}
|
|
|
this.editDialogVisible = true;
|
|
|
console.log(this.editForm);
|