From 3b352d80cbe7ab4313f4b991616e1b239198612b Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 19 Feb 2017 07:20:31 +0900 Subject: [PATCH] [Client] Fix bug --- src/web/app/common/scripts/get-post-summary.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/app/common/scripts/get-post-summary.js b/src/web/app/common/scripts/get-post-summary.js index 8e17d54e8..9202fe7b7 100644 --- a/src/web/app/common/scripts/get-post-summary.js +++ b/src/web/app/common/scripts/get-post-summary.js @@ -1,5 +1,5 @@ const getPostSummary = post => { - let = post.text ? post.text : ''; + let summary = post.text ? post.text : ''; // メディアが添付されているとき if (post.media) {