Unverified Commit 14fbab03 authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #1973 from ethereum/master_li

remove "compilation result for" label
parents 53b54e13 6a7dbdb3
...@@ -184,10 +184,7 @@ class CompileTab extends CompilerApi { ...@@ -184,10 +184,7 @@ class CompileTab extends CompilerApi {
return contractList.length !== 0 return contractList.length !== 0
? yo`<section class="${css.container} clearfix"> ? yo`<section class="${css.container} clearfix">
<!-- Select Compiler Version --> <!-- Select Compiler Version -->
<h6 class="bg-light input-group mt-3 mb-1 ${css.compilerArticle}"> <div class="navbar navbar-light bg-light input-group mb-3">
Compilation result for <label class="border-0 px-1 text-dark">${sourceFile}</label>
</h6>
<div class="input-group-prepend">
<label class="border-0 input-group-text" for="compiledContracts">Contract</label> <label class="border-0 input-group-text" for="compiledContracts">Contract</label>
<select onchange="${e => this.selectContract(e.target.value)}" onload="${e => { this.selectedContract = e.value }}" id="compiledContracts" class="custom-select"> <select onchange="${e => this.selectContract(e.target.value)}" onload="${e => { this.selectedContract = e.value }}" id="compiledContracts" class="custom-select">
${contractList.map((name) => yo`<option value="${name}">${name}</option>`)} ${contractList.map((name) => yo`<option value="${name}">${name}</option>`)}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment