mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:31:19 +08:00
Merge pull request #4222 from EloB/patch-1
Fix broken colorpicker for knobs
This commit is contained in:
commit
1717f9f4b9
@ -28,10 +28,13 @@ class ColorType extends React.Component {
|
||||
document.addEventListener('mousedown', this.handleWindowMouseDown);
|
||||
}
|
||||
|
||||
shouldComponentUpdate(nextProps) {
|
||||
shouldComponentUpdate(nextProps, nextState) {
|
||||
const { knob } = this.props;
|
||||
const { displayColorPicker } = this.state;
|
||||
|
||||
return nextProps.knob.value !== knob.value;
|
||||
return (
|
||||
nextProps.knob.value !== knob.value || nextState.displayColorPicker !== displayColorPicker
|
||||
);
|
||||
}
|
||||
|
||||
componentWillUnmount() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user