Merge pull request #1214 from ONLYOFFICE/fix/bug-49661

For  Bug 49661
This commit is contained in:
Julia Radzhabova 2021-09-29 17:00:06 +03:00 committed by GitHub
commit fa025149a0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View file

@ -1622,7 +1622,7 @@ define([
} }
} }
if (isLabel || event.target.className.match('checkbox')) { if (isLabel || event.target.className.match('checkbox') && event.target.localName!=='input') {
this.updateCellCheck(listView, record); this.updateCellCheck(listView, record);
_.delay(function () { _.delay(function () {

View file

@ -612,7 +612,7 @@ define([
} }
} }
if (isLabel || event.target.className.match('checkbox')) { if (isLabel || event.target.className.match('checkbox') && event.target.localName!=='input') {
this.updateFieldCheck(listView, record); this.updateFieldCheck(listView, record);
} }
} }

View file

@ -289,7 +289,7 @@ define([
} }
} }
if (isLabel || event.target.className.match('checkbox')) { if (isLabel || event.target.className.match('checkbox') && event.target.localName!=='input') {
this.updateCellCheck(listView, record); this.updateCellCheck(listView, record);
_.delay(function () { _.delay(function () {

View file

@ -195,7 +195,7 @@ define([
} }
} }
if (isLabel || event.target.className.match('checkbox')) { if (isLabel || event.target.className.match('checkbox') && event.target.localName!=='input') {
this.updateCellCheck(listView, record); this.updateCellCheck(listView, record);
_.delay(function () { _.delay(function () {

View file

@ -150,7 +150,7 @@ define([
} }
} }
if (isLabel || event.target.className.match('checkbox')) { if (isLabel || event.target.className.match('checkbox') && event.target.localName!=='input') {
this.updateCellCheck(listView, record); this.updateCellCheck(listView, record);
_.delay(function () { _.delay(function () {