-
Notifications
You must be signed in to change notification settings - Fork 29
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
feat(form): Introduce a 'User Modified' from section #1252
Conversation
packages/ui/src/components/Visualization/Canvas/CanvasFormTabs.tsx
Outdated
Show resolved
Hide resolved
ebebe6a
to
cb74001
Compare
Hi @lordrip,
Please test the latest changes here: https://shivamg640.github.io/kaoto/ |
packages/ui/src/components/Form/dataFormat/DataFormatEditor.tsx
Outdated
Show resolved
Hide resolved
packages/ui/src/components/Visualization/Canvas/CanvasFormTabs.tsx
Outdated
Show resolved
Hide resolved
Good progress @shivamG640, I think we're moving in the right direction 🚀 |
@lordrip Thanks for the review! |
2e21542
to
159380f
Compare
@shivamG640, the ExpressionEditor and the DataFormat editor stories need to be updated because at the moment they are not showing the editors. I think it's just a matter of adding the set to the |
71e64c4
to
38ba1ed
Compare
The PR looks good, thanks for taking care @shivamG640, let's check the issue around |
@@ -72,9 +73,10 @@ export class ExpressionService { | |||
language: ICamelLanguageDefinition | undefined; | |||
model: Record<string, unknown> | undefined; | |||
} { | |||
if (!isDefined(parentModel)) return { language: undefined, model: undefined }; |
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.
This line was added due to a bug when handling the setHeaders
EIP, that caused the newly added header to be null
, creating an error in the CanvasForm
component
Fixes #1129