Skip to content

Commit afd822c

Browse files
authored
Merge pull request #5714 from Countly/SER-1129
[SER-1129] remove HTML from localisation files
2 parents 86345f9 + 98b3af3 commit afd822c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/express/public/javascripts/countly/vue/components/helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@
410410
computed: {
411411
tooltipConf: function() {
412412
return {
413-
content: this.tooltip,
413+
content: countlyCommon.unescapeHtml(this.tooltip),
414414
placement: this.placement
415415
};
416416
}

frontend/express/public/javascripts/countly/vue/components/layout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137

138138
var PersistentNotifications = {
139139
template: '<div class="persistent-notifications" :class="additionalClasses">\
140-
<cly-notification v-for="notification in persistentNotifications" :key="notification.id" :closable="false" :text="notification.text" :color="notification.color"></cly-notification>\
140+
<cly-notification v-for="notification in persistentNotifications" :key="notification.id" :closable="false" :text="notification.text" :goTo="notification.goTo" :color="notification.color"></cly-notification>\
141141
</div>',
142142
computed: {
143143
persistentNotifications: function() {

0 commit comments

Comments
 (0)