1
0
mirror of https://github.com/flarum/core.git synced 2025-08-08 01:16:52 +02:00

Fix missing method call

This commit is contained in:
Alexander Skvortsov
2020-07-07 17:40:02 -04:00
committed by Franz Liedke
parent 73507f403a
commit c98c0b027f

View File

@@ -51,7 +51,7 @@ export default class PostStreamScrubber extends Component {
const afterHeight = 100 - beforeHeight - handleHeight;
const classNames = ['PostStreamScrubber', 'Dropdown'];
if (this.state.allVisible) classNames.push('disabled');
if (this.state.allVisible()) classNames.push('disabled');
if (this.dragging) classNames.push('dragging');
if (this.props.className) classNames.push(this.props.className);