Skip to content

Commit

Permalink
fix(FEC-8268): the scrubber doesn't moved with the cursor during seek #…
Browse files Browse the repository at this point in the history
…240

creating a new target object so the shellActions object wont be muted
  • Loading branch information
odedhutzler committed May 28, 2018
1 parent 4b4a48f commit cf22c33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/shell/shell.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const mapStateToProps = state => ({
*/
export const CONTROL_BAR_HOVER_DEFAULT_TIMEOUT: number = 3000;

@connect(mapStateToProps, bindActions(Object.assign(shellActions, engineActions)))
@connect(mapStateToProps, bindActions(Object.assign({}, shellActions, engineActions)))
/**
* Shell component
*
Expand Down

0 comments on commit cf22c33

Please sign in to comment.