Fix the experiment table view checkbox toggling [SCI-7792] (#4866)

This commit is contained in:
ajugo 2023-01-19 17:59:41 +01:00 committed by GitHub
parent 0973659f52
commit d178235dec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -267,7 +267,7 @@ var ExperimnetTable = {
});
});
$(this.table).on('click', '.assign-users-dropdown .dropdown-menu', (e) => {
if (e.currentTarget.tagName === 'INPUT') return;
if (e.target.tagName === 'INPUT') return;
e.preventDefault();
e.stopPropagation();
});