mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
Fix the experiment table view checkbox toggling [SCI-7792] (#4866)
This commit is contained in:
parent
0973659f52
commit
d178235dec
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue