mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
fix(n8n Form Trigger Node): Remove relience on getWorkflowStaticData for passing query parameters (#14728)
This commit is contained in:
@@ -852,11 +852,14 @@
|
||||
document.querySelector('#submit-btn').style.cursor = 'not-allowed';
|
||||
document.querySelector('#submit-btn span').style.display = 'inline-block';
|
||||
|
||||
let postUrl = '';
|
||||
if (window.location.href.includes('form-waiting')) {
|
||||
intervalId = setTimeout(checkExecutionStatus, interval);
|
||||
} else {
|
||||
postUrl = window.location.search;
|
||||
}
|
||||
|
||||
fetch('', {
|
||||
fetch(postUrl, {
|
||||
method: 'POST',
|
||||
body: formData,
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user