Skip to content

Commit

Permalink
Merge pull request #70 from ywywZhou/node_json_schema_input_validate
Browse files Browse the repository at this point in the history
fix: 节点配置-jsonSchema表单校验异常问题修复 --ignore
  • Loading branch information
ywywZhou authored Nov 21, 2024
2 parents 9b4daeb + 33229b2 commit edbdc45
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@antv/x6-vue-shape": "^2.0.11",
"@babel/core": "^7.14.3",
"@blueking/bkcharts": "^2.0.6",
"@blueking/bkui-form": "0.0.41",
"@blueking/bkui-form": "0.0.42-beta.11",
"@blueking/login-modal": "^1.0.1",
"@blueking/notice-component-vue2": "^2.0.1",
"@blueking/platform-config": "^1.0.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,9 @@
if (editorInstance) {
editorInstance.layoutCodeEditorInstance();
}
if (!val) {
this.formData = {};
}
});
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@
const { uniform_api_plugin_method: method, uniform_api_plugin_url: realMetaUrl } = component.data;
Object.assign(data, {
plugin: 'uniform_api',
name: `${category.name}_${name}`,
name: `${category.name}-${name}`,
pluginId: id,
method: method.value,
groupId: category.id,
Expand Down

0 comments on commit edbdc45

Please sign in to comment.