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-04-23 03:56:56 +0300
committerGitHub <noreply@github.com>2021-04-23 03:56:56 +0300
commit29560389f7ba80d8d6d83ee4579d6eba2519e911 (patch)
tree49788f1a89a63573f5502cffb53aea475d5d082d /plugins/Marketplace
parent59bc5384af96672b3740d18a439295bc9948dc54 (diff)
Do not parse plugin details with angular in marketplace overlay (#17483)
Diffstat (limited to 'plugins/Marketplace')
-rw-r--r--plugins/Marketplace/templates/plugin-details.twig6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Marketplace/templates/plugin-details.twig b/plugins/Marketplace/templates/plugin-details.twig
index 43d7774c64..1cdfc2a079 100644
--- a/plugins/Marketplace/templates/plugin-details.twig
+++ b/plugins/Marketplace/templates/plugin-details.twig
@@ -65,17 +65,17 @@
<div class="alert alert-warning">{{ 'Marketplace_PluginLicenseExceededDescription'|translate }}</div>
{% endif %}
- {{ latestVersion.readmeHtml.description|raw }}
+ <div ng-non-bindable>{{ latestVersion.readmeHtml.description|raw }}</div>
</div>
{% if latestVersion.readmeHtml.faq %}
- <div id="tabs-faq" class="tab-content col s12">
+ <div id="tabs-faq" class="tab-content col s12" ng-non-bindable>
{{ latestVersion.readmeHtml.faq|raw }}
</div>
{% endif %}
{% if latestVersion.readmeHtml.documentation %}
- <div id="tabs-documentation" class="tab-content col s12">
+ <div id="tabs-documentation" class="tab-content col s12" ng-non-bindable>
{{ latestVersion.readmeHtml.documentation|raw }}
</div>
{% endif %}