-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from BitBagCommerce/OPSRC-577/Fix_auto_block_r…
…ule_form Add event trigger on type select
- Loading branch information
Showing
4 changed files
with
17 additions
and
4 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
src/Resources/assets/admin/automaticBlacklistingConfiguration.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
const addRuleBtn = document.querySelector('[data-form-collection="add"]'); | ||
|
||
const turnOnListener = () => { | ||
addRuleBtn?.addEventListener('click', () => { | ||
setTimeout(() => { | ||
const configurationTypeSelects = document.querySelectorAll('[data-form-collection="update"]'); | ||
const changeEvent = new Event('change', { 'bubbles': true }); | ||
|
||
configurationTypeSelects[configurationTypeSelects.length - 1].dispatchEvent(changeEvent); | ||
}, 100); | ||
}); | ||
} | ||
|
||
turnOnListener(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
import './automaticBlacklistingConfiguration'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters