From 663c4b483762bf7e79f05f20cc195b10262bf880 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Sun, 5 Jul 2015 13:53:06 +0930 Subject: [PATCH] Fix post scrubber unread indicator overflow --- framework/core/js/forum/src/components/post-scrubber.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/js/forum/src/components/post-scrubber.js b/framework/core/js/forum/src/components/post-scrubber.js index dc8146b3f..26261fc06 100644 --- a/framework/core/js/forum/src/components/post-scrubber.js +++ b/framework/core/js/forum/src/components/post-scrubber.js @@ -31,7 +31,7 @@ export default class PostScrubber extends Component { }); this.count = () => this.props.stream.count(); - this.index = m.prop(-1); + this.index = m.prop(0); this.visible = m.prop(1); this.description = m.prop();