From e843f7043c94cd6c0eaff1a17ffc5861c4f133de Mon Sep 17 00:00:00 2001 From: zombieFox Date: Wed, 1 Sep 2021 21:24:10 +0100 Subject: [PATCH] fix bookmark name special character support --- src/component/bookmarkTile/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/component/bookmarkTile/index.js b/src/component/bookmarkTile/index.js index 5621479f..680c6a6f 100644 --- a/src/component/bookmarkTile/index.js +++ b/src/component/bookmarkTile/index.js @@ -39,7 +39,7 @@ const BookmarkTile = function({ }, name: { name: node('div|class:bookmark-display-name'), - text: node('div:' + bookmarkData.link.display.name.text + '|class:bookmark-display-name-text') + text: complexNode({ tag: 'div', text: bookmarkData.link.display.name.text, attr: [{ key: 'class', value: 'bookmark-display-name-text' }] }) } }, background: {