Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reset isColumnReordering properly on stop #78

Merged
merged 2 commits into from
Nov 12, 2016

Conversation

wcjordan
Copy link
Member

@wcjordan wcjordan commented Nov 8, 2016

Description

We were changing the wrong state variable on isColumnReordering stop. This is probably why some complained about needing to set the prop manually.

Motivation and Context

Use correct state variable when stopping column reorder. May fix issues of needing to set a prop when stopping column reorder.

How Has This Been Tested?

Ran the examples.

Screenshots (if appropriate):

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)

Checklist:

  • My code follows the code style of this project.
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I have read the CONTRIBUTING document.

@@ -759,7 +759,7 @@ var FixedDataTable = React.createClass({
var reorderColumn = this.state.columnReorderingData.columnKey;

this.setState({
isReordering: false,
isColumnReordering: false,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If only we had unit tests :/

@KamranAsif KamranAsif merged commit 6b5ad88 into schrodinger:master Nov 12, 2016
@KamranAsif
Copy link
Contributor

Nice catch. We need to remember to remove the code from from GridHeader.jsx

@wcjordan wcjordan deleted the fix_reorder_stop branch November 12, 2016 17:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants