Remove undeclared var

pull/374/head
Rick Carlino 2017-08-02 12:27:18 -05:00
parent 1b8cdd6e3b
commit 38aff632ed
2 changed files with 1 additions and 2 deletions

View File

@ -27,7 +27,7 @@ export class DropArea extends React.Component<DropAreaProps, DropAreaState> {
onDragEnter={this.toggle}
onDragOver={this.dragOver}
onDrop={this.drop}
style={{ minHeight: "1.25rem" }} >
style={{ minHeight: "1.25rem", border: "1px solid red" }} >
{this.props.children}
</div>;
}

View File

@ -4,7 +4,6 @@ import { InputDefault } from "../input_default";
import { mount } from "enzyme";
import { TaggedSequence } from "../../../resources/tagged_resources";
import { MoveAbsolute } from "farmbot/dist";
import { updateStep } from "../../step_tiles/index";
import { Wrapper } from "../../../__test_support__/wrapper";
describe("<InputDefault/>", () => {