Fix Blank Space Component Background

For some reason the background of the Blank Space Component was never rendered.
This commit is contained in:
Christopher Serr
2017-09-08 16:40:35 +02:00
committed by GitHub
parent 3d57df6f48
commit 69bfde26bd
+2
View File
@@ -1,5 +1,6 @@
import * as React from "react";
import * as LiveSplit from "../livesplit";
import { gradientToCss } from "../util/ColorUtil";
export interface Props { state: LiveSplit.BlankSpaceComponentStateJson }
@@ -10,6 +11,7 @@ export default class BlankSpace extends React.Component<Props> {
className="blank-space"
style={{
height: this.props.state.height,
background: gradientToCss(this.props.state.background),
}}
/>
);