Skip to content
Snippets Groups Projects
Commit 76adde4f authored by Jeong Arm's avatar Jeong Arm Committed by Eugen Rochko
Browse files

Fix media open hotkey (#12546)

parent 04582e3c
No related branches found
No related tags found
No related merge requests found
......@@ -215,7 +215,8 @@ class Status extends ImmutablePureComponent {
}
handleHotkeyOpenMedia = e => {
const { status, onOpenMedia, onOpenVideo } = this.props;
const { onOpenMedia, onOpenVideo } = this.props;
const status = this._properStatus();
e.preventDefault();
......
......@@ -282,7 +282,7 @@ class Status extends ImmutablePureComponent {
}
handleHotkeyOpenMedia = e => {
const { status } = this.props;
const status = this._properStatus();
e.preventDefault();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment