Merge pull request #224 from RubenPX/bugfix/fix-clickable-lots

FIX: clickable lots selector not working when click in text
This commit is contained in:
Santiago L 2022-04-19 19:49:07 +02:00 committed by GitHub
commit 9e47cd967c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -200,8 +200,9 @@ async function processSelectedDevices() {
*/
manage(event, lotID, deviceListID) {
event.preventDefault();
const indeterminate = event.srcElement.indeterminate;
const checked = !event.srcElement.checked;
const srcElement = event.srcElement.parentElement.children[0]
const indeterminate = srcElement.indeterminate;
const checked = !srcElement.checked;
var found = this.list.filter(list => list.lotID == lotID)[0];
var foundIndex = found != undefined ? this.list.findLastIndex(x => x.lotID == found.lotID) : -1;
@ -343,6 +344,7 @@ async function processSelectedDevices() {
}
doc.children[0].addEventListener('mouseup', (ev) => actions.manage(ev, lotID, selectedDevicesIDs));
doc.children[1].addEventListener('mouseup', (ev) => actions.manage(ev, lotID, selectedDevicesIDs));
elementTarget.append(doc);
}