Skip to content

Commit

Permalink
Bugfix to actually fire values back to server
Browse files Browse the repository at this point in the history
  • Loading branch information
mjclawar committed Mar 24, 2018
1 parent 3346317 commit 0331811
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

[1.5.0] 2018.03.24
[1.6.1] 2018.03.24
### Changed
- Bugfix to actually fire values back to server

[1.6.0] 2018.03.24
### Changed
- Updates to support a categorical variable via `Checkboxes`

Expand Down
2 changes: 1 addition & 1 deletion sd_range_slider/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.6.0'
__version__ = '1.6.1'
2 changes: 2 additions & 0 deletions src/components/SDRangeSlider.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,8 @@ export default class SDRangeSlider extends React.Component<Props, State> {
else
valueCopy.push(markValue);
this.setState({value: valueCopy});
if (setProps) setProps({value: valueCopy});
if (fireEvent) fireEvent('change');
}}
/>)
})
Expand Down

0 comments on commit 0331811

Please # to comment.