Fix dapps separation

This commit is contained in:
Nicolas Gotchac 2016-12-10 01:32:39 +01:00
parent b9c04fcd00
commit f6564dcc2f

View File

@ -72,9 +72,17 @@ export default class Dapps extends Component {
] } ] }
/> />
<Page> <Page>
{ this.renderList(this.store.visibleLocal) } <div>
{ this.renderList(this.store.visibleBuiltin) } { this.renderList(this.store.visibleLocal) }
{ this.renderList(this.store.visibleNetwork, externalOverlay) } </div>
<div>
{ this.renderList(this.store.visibleBuiltin) }
</div>
<div>
{ this.renderList(this.store.visibleNetwork, externalOverlay) }
</div>
</Page> </Page>
</div> </div>
); );