Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
vue-flow-editor
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2024-07-16 11:46:10 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9dade5703fbc6b5a6542f0d74c272bc1bc5c5fc6
9dade570
1 parent
c7b17d69
fix 屏蔽开始节点检查报错
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
doc/index.vue
doc/index.vue
View file @
9dade57
...
...
@@ -2393,6 +2393,8 @@ export default {
// TAG: 检查节点是否完整
const checkResult = await checkAllFlowNodePropertyAPI({ flow_id: +flow_id })
if (checkResult.code) {
// TAG: 暂时不检查开始节点
checkResult.data = checkResult.data.filter(item => item !== 'start-node');
if (noticeError(checkResult)) {
return;
}
...
...
@@ -2411,6 +2413,8 @@ export default {
// 检查点击节点后通过了,但是还有未通过的节点没有点击时
const checkResult = await checkAllFlowNodePropertyAPI({ flow_id: +flow_id })
if (checkResult.code) {
// TAG: 暂时不检查开始节点
checkResult.data = checkResult.data.filter(item => item !== 'start-node');
if (noticeError(checkResult)) {
return;
}
...
...
Please
register
or
login
to post a comment