Skip to content

Commit 2328e95

Browse files
Merge pull request #5877 from Countly/SER-2148-content-single-quotation-mark-issue-in-content
[SER-2148] [Content] Single quotation mark issue in Content.
2 parents b9a026d + 3c92c52 commit 2328e95

File tree

1 file changed

+4
-0
lines changed
  • frontend/express/public/javascripts/countly/vue/components

1 file changed

+4
-0
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,10 @@
428428
return !!this.value;
429429
}
430430

431+
if (this.type === COUNTLY_CONTENT_SIDEBAR_INPUT_COMPONENT_BY_TYPE_INPUT) {
432+
return countlyCommon.unescapeHtml(this.value) || '';
433+
}
434+
431435
return this.value || null;
432436
},
433437
set(newValue) {

0 commit comments

Comments
 (0)