FIX: longer touch for active message (#22279)
Moving from 50ms to 125ms, it should limit cases where message is activated during scroll.
This commit is contained in:
parent
9a276cb688
commit
0ab572fbf0
|
@ -283,7 +283,7 @@ export default class ChatMessage extends Component {
|
||||||
// capture the touch event instead of a scroll
|
// capture the touch event instead of a scroll
|
||||||
this._makeMessageActiveHandler = discourseLater(() => {
|
this._makeMessageActiveHandler = discourseLater(() => {
|
||||||
this.isActive = true;
|
this.isActive = true;
|
||||||
}, 50);
|
}, 125);
|
||||||
}
|
}
|
||||||
|
|
||||||
@action
|
@action
|
||||||
|
|
Loading…
Reference in New Issue