From f47063bbcc4820197f9916bef05d42e92d50e18a Mon Sep 17 00:00:00 2001 From: Christopher Gurnee Date: Tue, 25 Apr 2023 14:53:15 +0000 Subject: [PATCH] Fix thumbnails containing `&` --- src/pages/common/Post.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/common/Post.js b/src/pages/common/Post.js index 006431f..7e44822 100644 --- a/src/pages/common/Post.js +++ b/src/pages/common/Post.js @@ -56,7 +56,7 @@ const Post = (props) => { thumbnail = React.createElement(isUrlThisPost ? Link : 'a', { [isUrlThisPost ? 'to' : 'href']: url, replace: isUrlThisPost ? props.isLocFullPost : undefined - }, Thumbnail) + }, Thumbnail) } const innerHTML = Array(editedModes.length)