Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Giehl <stefan@matomo.org>2021-03-23 18:02:10 +0300
committerGitHub <noreply@github.com>2021-03-23 18:02:10 +0300
commit12435237bac168bf9ff72c11c0f18e29c53fed43 (patch)
tree5a38f9021501ed014b1bc9606081d653da65340b /plugins/CoreHome/javascripts
parentd3dd02903e5e89f10aca672e9c1ba5548d937757 (diff)
Ensure correct rowaction instances are used (#17383)
Diffstat (limited to 'plugins/CoreHome/javascripts')
-rw-r--r--plugins/CoreHome/javascripts/dataTable.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreHome/javascripts/dataTable.js b/plugins/CoreHome/javascripts/dataTable.js
index b90e444d23..dca051d25b 100644
--- a/plugins/CoreHome/javascripts/dataTable.js
+++ b/plugins/CoreHome/javascripts/dataTable.js
@@ -1809,7 +1809,7 @@ $.extend(DataTable.prototype, UIControl.prototype, {
if (!trs || !trs.length || !trs[0]) {
return;
}
- var parent = $(trs[0]).parents('table');
+ var parent = $(trs[0]).closest('table');
var self = this;