-
Notifications
You must be signed in to change notification settings - Fork 36
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
Issue multiple dummy nodes formed #1200
Conversation
src/components/TransformWorkflow/FlowEditor/Components/Canvas.tsx
Outdated
Show resolved
Hide resolved
src/components/TransformWorkflow/FlowEditor/Components/OperationConfigLayout.tsx
Show resolved
Hide resolved
...components/TransformWorkflow/FlowEditor/Components/OperationPanel/Forms/CastColumnOpForm.tsx
Show resolved
Hide resolved
Issues->
Changes made->
Comman Changes in all forms:->
|
Issues still remaining->
|
Issues->
Click on source node (table ) then click on operational node, the column data in the operational form would dissapper.
reason-> It was a dummy operational node (and action was edit), so api call wont fetch any data with that nodeid.
sol-> If its an operational dummy node, keep it in
create
mode (not edit) and use source node id for api call.Click on source node then any operation from operations table, a dummy node appears. Now again click source node (table) and choose another operation , a new dummy node appears and so on.
reason-> No code to check if the dummy node created earlier is being used or not.
sol-> If user clicks on source node , then remove the dummy node. This ensures we dont have multiple dummy node on the canvas.
Before: ->
link1
After:->
link2