mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(editor): Make sticky node content parameter non require to support empty stickies (#9192)
This commit is contained in:
@@ -419,6 +419,9 @@ export class WorkflowPage extends BasePage {
|
||||
editSticky: (content: string) => {
|
||||
this.getters.stickies().dblclick().find('textarea').clear().type(content).type('{esc}');
|
||||
},
|
||||
clearSticky: () => {
|
||||
this.getters.stickies().dblclick().find('textarea').clear().type('{esc}');
|
||||
},
|
||||
shouldHaveWorkflowName: (name: string) => {
|
||||
this.getters.workflowNameInputContainer().invoke('attr', 'title').should('include', name);
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user