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:
authordizzy <diosmosis@users.noreply.github.com>2022-07-04 10:39:19 +0300
committerGitHub <noreply@github.com>2022-07-04 10:39:19 +0300
commitfead960d52c70f70feacf16f3583b8e4722da49a (patch)
treeb9a2d489d218a1a2868e94e02b0d2aea7f38fcaa /plugins/Morpheus
parent807e3a07e5428552057ad442224378141efc6cc3 (diff)
do not propagate css class of vue-entry elements to the root vue element (#19457)
Diffstat (limited to 'plugins/Morpheus')
-rw-r--r--plugins/Morpheus/javascripts/piwikHelper.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Morpheus/javascripts/piwikHelper.js b/plugins/Morpheus/javascripts/piwikHelper.js
index ab0a8eb8b5..66293bcc69 100644
--- a/plugins/Morpheus/javascripts/piwikHelper.js
+++ b/plugins/Morpheus/javascripts/piwikHelper.js
@@ -198,7 +198,7 @@ window.piwikHelper = {
var componentParams = {};
function handleProperty(name, value) {
- if (name === 'vue-entry') {
+ if (name === 'vue-entry' || name === 'class' || name === 'style') {
return;
}