mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-21 15:13:50 +00:00
[Feature] Prevent sending notification to user when bulk reassign
This commit is contained in:
@@ -39,18 +39,12 @@ function loadDynamicPickers(element) {
|
||||
|
||||
apps.forEach(function(el) {
|
||||
|
||||
console.log('el', el);
|
||||
const
|
||||
uniqId = el.dataset.uniqid,
|
||||
input = document.querySelector(`input[data-input-uniqid="${uniqId}"]`),
|
||||
cityIdValue = input.value === '' ? null : input.value
|
||||
;
|
||||
|
||||
console.log('uniqid', uniqId);
|
||||
console.log('input', input);
|
||||
console.log('input value', input.value);
|
||||
console.log('cityIdValue', cityIdValue);
|
||||
|
||||
if (cityIdValue !== null) {
|
||||
makeFetch('GET', `/api/1.0/main/postal-code/${cityIdValue}.json`).then(city => {
|
||||
loadOnePicker(el, input, uniqId, city);
|
||||
|
Reference in New Issue
Block a user