mirror of
https://github.com/langgenius/dify.git
synced 2026-05-04 17:38:04 +08:00
refactor(workflow): Remove Start node from isRequired mechanism
- Set Start node isRequired: false since entry node validation is handled by unified logic - Remove conditional skip logic in checklist since Start is no longer in isRequiredNodesType - Cleaner separation of concerns: unified entry node check vs individual required nodes - Eliminates architectural inconsistency where Start was both individually required and part of group validation
This commit is contained in:
@ -7,7 +7,7 @@ const metaData = genNodeMetaData({
|
||||
sort: 0.1,
|
||||
type: BlockEnum.Start,
|
||||
isStart: true,
|
||||
isRequired: true,
|
||||
isRequired: false,
|
||||
isSingleton: true,
|
||||
isTypeFixed: true,
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user