Minor tweaks

pull/10616/head
Will Piers 2016-12-13 16:32:19 -08:00
parent beab738d92
commit 2d54d4c26d
2 changed files with 4 additions and 4 deletions

View File

@ -171,9 +171,7 @@ const Panel = React.createClass({
renderAddQuery() {
return (
<SimpleDropdown onChoose={this.onChoose} items={[{text: 'Builder'}, {text: 'Raw'}]} className="editor-chooser">
<div className="panel--tab">
<span className="icon plus"></span>
</div>
</SimpleDropdown>
);
},

View File

@ -42,7 +42,9 @@ const Dropdown = React.createClass({
{items.map((item, i) => {
return (
<li className="dropdown-item" key={i} onClick={() => self.handleSelection(item)}>
<a href="#">
{item.text}
</a>
</li>
);
})}