1
0
mirror of https://github.com/flarum/core.git synced 2025-07-30 05:00:56 +02:00

fix: unread count in post stream not visible (#3791)

Signed-off-by: Sami Mazouz <sychocouldy@gmail.com>
This commit is contained in:
Sami Mazouz
2023-04-16 21:14:54 +01:00
committed by GitHub
parent 3a26c29935
commit 11aa7bbb35
2 changed files with 1 additions and 1 deletions

View File

@@ -41,6 +41,7 @@ export default class PostStreamScrubber extends Component {
const newStyle = {
top: 100 - unreadPercent * 100 + '%',
height: unreadPercent * 100 + '%',
opacity: unreadPercent ? 1 : 0,
};
if (vnode.state.oldStyle) {