Skip to content

Commit

Permalink
[Slider] Remove Object.assign for SliderStyle
Browse files Browse the repository at this point in the history
  • Loading branch information
tintin1343 committed May 2, 2016
1 parent 9654fb3 commit 169518c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Slider/Slider.js
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ class Slider extends Component {

const {prepareStyles} = this.context.muiTheme;
const styles = getStyles(this.props, this.context, this.state);
const sliderStyles = Object.assign({}, styles.slider);
const sliderStyles = styles.slider;

let handleStyles = {};
let percent = this.state.percent;
Expand Down

0 comments on commit 169518c

Please sign in to comment.