Skip to content

Commit

Permalink
fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
snide committed Nov 20, 2017
1 parent 92f8aec commit d70ff81
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions src-docs/src/views/table/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -388,16 +388,17 @@ export default class extends Component {
anchorPosition="leftCenter"
>
<EuiContextMenuPanel
items={[(
<EuiContextMenuItem
key="A"
icon="pencil"
onClick={() => { this.closePopover(item.id); }}
>
Edit
</EuiContextMenuItem>
), (
<EuiContextMenuItem
items={[
(
<EuiContextMenuItem
key="A"
icon="pencil"
onClick={() => { this.closePopover(item.id); }}
>
Edit
</EuiContextMenuItem>
), (
<EuiContextMenuItem
key="B"
icon="share"
onClick={() => { this.closePopover(item.id); }}
Expand Down

0 comments on commit d70ff81

Please sign in to comment.