-
Notifications
You must be signed in to change notification settings - Fork 327
[elsa] 并行节点特性添加 #114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
CodeCasterX
merged 3 commits into
ModelEngine-Group:3.5.x
from
RonnyChan96:3.5.x_elsa_feature_add_parallel_node
May 13, 2025
Merged
[elsa] 并行节点特性添加 #114
CodeCasterX
merged 3 commits into
ModelEngine-Group:3.5.x
from
RonnyChan96:3.5.x_elsa_feature_add_parallel_node
May 13, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Closed
wjn1584
reviewed
May 13, 2025
| export const parallelNodeState = (id, x, y, width, height, parent, drawer) => { | ||
| const self = jadeNode(id, x, y, width, height, parent, drawer ? drawer : parallelNodeDrawer); | ||
| self.type = 'parallelNodeState'; | ||
| self.text = '并行节点'; |
Member
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
是不是将所有节点统一加一下国际化
wjn1584
reviewed
May 13, 2025
| self.reduce = (config, action) => { | ||
| const newConfig = {...config}; | ||
| Object.entries(config).forEach(([key, value]) => { | ||
| if (key === 'inputParams') { |
Member
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
使用卫语句,避免深度嵌套
ef1c7d5 to
85cc3f3
Compare
wjn1584
approved these changes
May 13, 2025
Closed
Yager-42
pushed a commit
to Yager-42/fit-framework
that referenced
this pull request
Aug 16, 2025
* [elsa] 提交并行节点代码框架 * [elsa] 并行节点特性添加 * [elsa] 检视意见修改
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
1.添加并行节点
2.联调问题修复