Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ui/src/workflow/common/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export const knowledgeWriteNode = {
type: WorkflowType.KnowledgeWriteNode,
text: t('views.workflow.nodes.knowledgeWriteNode.text'),
label: t('views.workflow.nodes.knowledgeWriteNode.label'),
height: 252,
height: 100,
properties: {
stepName: t('views.workflow.nodes.knowledgeWriteNode.label'),
config: {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The code you provided has two minor changes:

  1. The height property of the knowledgeWriteNode is reduced from 252 to 100 pixels.
  2. The value for the widthPropertyKey in the config section was changed to 'stepName'.

These changes may impact the visual layout of the workflow node on some interfaces. If these changes were intended, they align with reducing the size and focusing on the step name. However, without additional context about the specific requirements or constraints of your workflow application, it's difficult to determine whether either change is optimal.

If you have more details or if there are particular areas of concern (e.g., responsiveness, compatibility across different devices), feel free to share them so I can provide a more tailored response.

Expand Down
Loading