* Fix bug of task #86272.

This commit is contained in:
liumengyi
2023-03-10 08:09:39 +00:00
parent bfa2a2dd45
commit 0041c30457
+5 -2
View File
@@ -117,8 +117,11 @@ $(function()
$('#privListTable tr').on('click', 'td', function(e)
{
e.stopPropagation();
if(!$(e.target.closest('td')).hasClass('c-actions') && $(e.target).attr('type') != 'checkbox') updateRelations(e);
if(!$(e.target.closest('td')).hasClass('c-actions') && $(e.target).attr('type') != 'checkbox')
{
e.stopPropagation();
updateRelations(e);
}
});
});