mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix(n8n Form Trigger Node): Add back the query selector for multiselect (#13987)
This commit is contained in:
@@ -859,7 +859,10 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
document.querySelectorAll('.multiselect').forEach((multiselect) => {
|
||||
const selectedValues = getSelectedValues(multiselect);
|
||||
formData.append(multiselect.id, JSON.stringify(selectedValues));
|
||||
});
|
||||
document.querySelector('#submit-btn').disabled = true;
|
||||
document.querySelector('#submit-btn').style.cursor = 'not-allowed';
|
||||
document.querySelector('#submit-btn span').style.display = 'inline-block';
|
||||
|
||||
Reference in New Issue
Block a user