diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-02-19 07:20:31 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-02-19 07:20:31 +0900 |
| commit | 3b352d80cbe7ab4313f4b991616e1b239198612b (patch) | |
| tree | d88bce10914ee67571351d41cedb7feb5fafb028 /src/web/app/common/scripts | |
| parent | [Client] Remove an unused mixin (diff) | |
| download | sharkey-3b352d80cbe7ab4313f4b991616e1b239198612b.tar.gz sharkey-3b352d80cbe7ab4313f4b991616e1b239198612b.tar.bz2 sharkey-3b352d80cbe7ab4313f4b991616e1b239198612b.zip | |
[Client] Fix bug
Diffstat (limited to 'src/web/app/common/scripts')
| -rw-r--r-- | src/web/app/common/scripts/get-post-summary.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/app/common/scripts/get-post-summary.js b/src/web/app/common/scripts/get-post-summary.js index 8e17d54e81..9202fe7b7a 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) { |