mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
feat: fix the problem of form entries being deleted when adding a new line #918 and clear the selection box to delete the corresponding edge (#1301)
### What problem does this PR solve? feat: clear the selection box to delete the corresponding edge. #918 feat: fix the problem of form entries being deleted when adding a new line #918 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -101,13 +101,7 @@ export const CategorizeAnchorPointPositions = [
|
||||
// key is the source of the edge, value is the target of the edge
|
||||
// no connection lines are allowed between key and value
|
||||
export const RestrictedUpstreamMap = {
|
||||
[Operator.Begin]: [
|
||||
Operator.Begin,
|
||||
Operator.Answer,
|
||||
Operator.Categorize,
|
||||
Operator.Generate,
|
||||
Operator.Retrieval,
|
||||
],
|
||||
[Operator.Begin]: [],
|
||||
[Operator.Categorize]: [Operator.Begin, Operator.Categorize, Operator.Answer],
|
||||
[Operator.Answer]: [],
|
||||
[Operator.Retrieval]: [],
|
||||
|
||||
Reference in New Issue
Block a user