From c1af2168723634b5291a75f0a2402915b8aea0c7 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Sun, 7 Jun 2015 10:12:48 +0930 Subject: [PATCH] Fix user profile activity regression --- framework/core/js/forum/src/components/posted-activity.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/js/forum/src/components/posted-activity.js b/framework/core/js/forum/src/components/posted-activity.js index 9b62d620a..e2e65ab68 100644 --- a/framework/core/js/forum/src/components/posted-activity.js +++ b/framework/core/js/forum/src/components/posted-activity.js @@ -23,7 +23,7 @@ export default class PostedActivity extends Component { near: post.number() }), config: m.route}, [ m('ul.list-inline', listItems(this.headerItems().toArray())), - m('div.body', m.trust(post.excerpt())) + m('div.body', m.trust(post.contentPlain().substring(0, 200))) ]) ]); }