feat: Add custom CSS to response form for HITL nodes (#15807)

Co-authored-by: RomanDavydchuk <roman.davydchuk@n8n.io>
This commit is contained in:
Elias Meire
2025-06-05 10:34:51 +02:00
committed by GitHub
parent 8a1cabe62a
commit 3f4810615b
2 changed files with 22 additions and 2 deletions

View File

@@ -303,6 +303,7 @@ describe('Send and Wait utils tests', () => {
responseFormTitle: 'Test title',
responseFormDescription: 'Test description',
responseFormButtonLabel: 'Test button',
responseFormCustomCss: 'body { background-color: red; }',
},
};
return params[parameterName];
@@ -334,6 +335,7 @@ describe('Send and Wait utils tests', () => {
],
appendAttribution: true,
buttonLabel: 'Test button',
dangerousCustomCss: 'body { background-color: red; }',
});
});