diff --git a/VERSION.properties b/VERSION.properties index 7b5c697d..c50c7117 100644 --- a/VERSION.properties +++ b/VERSION.properties @@ -1,2 +1,2 @@ -client.version=1.4.9 +client.version=1.4.10 server.version=1.4.0 diff --git a/shine-UI/js/pages/channel-thread-view.js b/shine-UI/js/pages/channel-thread-view.js index 4b1079a6..65a62d97 100644 --- a/shine-UI/js/pages/channel-thread-view.js +++ b/shine-UI/js/pages/channel-thread-view.js @@ -773,6 +773,7 @@ function renderNodeCard(node, heading, handlers, localNumber) { }); }); card.append(deleted); + return card; } else { card.append(authorTile); if (parsedText.attachments.length > 0) { diff --git a/shine-UI/js/pages/channel-view.js b/shine-UI/js/pages/channel-view.js index c6c2a82d..5756c465 100644 --- a/shine-UI/js/pages/channel-view.js +++ b/shine-UI/js/pages/channel-view.js @@ -1114,6 +1114,7 @@ function renderPostCard(post, { }); }); card.append(deleted); + return card; } else { card.append(authorTile); if (parsedBody.attachments.length > 0) {