Commit c6feb903 by Torkel Ödegaard

build: fixed build failure

parent 2de439c5
...@@ -87,7 +87,7 @@ export class ColorPickerPopover extends React.Component<IProps, any> { ...@@ -87,7 +87,7 @@ export class ColorPickerPopover extends React.Component<IProps, any> {
); );
const spectrumTab = ( const spectrumTab = (
<div id="spectrum"> <div id="spectrum">
<fSpectrumPicker color={this.state.color} onColorSelect={this.spectrumColorSelected.bind(this)} options={{}} /> <SpectrumPicker color={this.state.color} onColorSelect={this.spectrumColorSelected.bind(this)} options={{}} />
</div> </div>
); );
const currentTab = this.state.tab === 'palette' ? paletteTab : spectrumTab; const currentTab = this.state.tab === 'palette' ? paletteTab : spectrumTab;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment