From 6c88f552ec098130ff3fa54d62e2abbb426a6f39 Mon Sep 17 00:00:00 2001 From: Apostolof Date: Sun, 6 Dec 2020 17:12:38 +0200 Subject: [PATCH] Add placeholder for post content --- .../src/components/PostList/PostListRow/index.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/concordia-app/src/components/PostList/PostListRow/index.jsx b/packages/concordia-app/src/components/PostList/PostListRow/index.jsx index f2e8a15..0848d84 100644 --- a/packages/concordia-app/src/components/PostList/PostListRow/index.jsx +++ b/packages/concordia-app/src/components/PostList/PostListRow/index.jsx @@ -140,7 +140,9 @@ const PostListRow = (props) => { : } - {postContent} + {postContent !== null + ? postContent + : }