1
0
mirror of https://github.com/flarum/core.git synced 2025-07-03 16:15:14 +02:00

Fix user profile activity regression

This commit is contained in:
Toby Zerner
2015-06-07 10:12:48 +09:30
parent 381e7a2c57
commit a5ad1fded7

@ -23,7 +23,7 @@ export default class PostedActivity extends Component {
near: post.number() near: post.number()
}), config: m.route}, [ }), config: m.route}, [
m('ul.list-inline', listItems(this.headerItems().toArray())), 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)))
]) ])
]); ]);
} }