Skip to content

Commit

Permalink
Merge pull request #347 from donfrigo/fix-openzeppelin
Browse files Browse the repository at this point in the history
fix smart contract import missing from file browser
  • Loading branch information
donfrigo authored Jan 15, 2019
2 parents fe869e4 + a0b3180 commit 197f90d
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import {
IconEdit,
IconAddFile,
IconAddFolder,
IconImportFile
} from '../../../../icons';
import style from '../../style.less';
import { DropdownContainer } from '../../../../common';
Expand All @@ -34,6 +35,7 @@ export class DirectoryEntry extends Component {
title,
angleClicked,
clickNewFile,
clickImportFile,
clickNewFolder,
clickRenameFile,
clickDeleteFile,
Expand All @@ -51,6 +53,12 @@ export class DirectoryEntry extends Component {
</div>
Create File
</div>
<div onClick={clickImportFile}>
<div className={style.icon} >
<IconImportFile />
</div>
Import File
</div>
<div onClick={clickNewFolder}>
<div className={style.icon} >
<IconAddFolder />
Expand Down

0 comments on commit 197f90d

Please sign in to comment.