fix: sanitize quotes
This commit is contained in:
parent
79b1120de7
commit
e6dab2a329
3 changed files with 4 additions and 3 deletions
|
@ -35,6 +35,7 @@ export default {
|
|||
if (!string) return
|
||||
return string.replace(utmPattern, '')
|
||||
},
|
||||
replaceQuotes: (string) => string.replace(/"/g, "'"),
|
||||
|
||||
// analytics
|
||||
getPopularPosts: (posts, analytics) => {
|
||||
|
|
Reference in a new issue