Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
b6144ac2
Commit
b6144ac2
authored
Jan 14, 2020
by
alexcherman
Committed by
Rob Stupay
Feb 20, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix label letter case
parent
ab65299c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
compilerContainer.js
src/app/tabs/compileTab/compilerContainer.js
+6
-6
staticAnalysisView.js
src/app/tabs/staticanalysis/staticAnalysisView.js
+1
-1
No files found.
src/app/tabs/compileTab/compilerContainer.js
View file @
b6144ac2
...
...
@@ -241,7 +241,7 @@ class CompilerContainer {
<div class="row w-100 no-gutters mb-2">
<div class="col-sm-4">
<div class="d-flex flex-row justify-content-end">
<label class="
${
css
.
compilerLabel
}
input-group-text pr-0 border-0 w-100" for="versionSelector">
<label class="
${
css
.
compilerLabel
}
form-check-label
input-group-text pr-0 border-0 w-100" for="versionSelector">
<button class="far fa-plus-square border-0 p-0 mx-2 btn-sm" onclick="
${(
e
)
=>
this
.
promtCompiler
(
e
)}
" title="Add a custom compiler with URL"></button>
Compiler
</label>
...
...
@@ -257,7 +257,7 @@ class CompilerContainer {
</div>
<div class="row w-100 no-gutters mb-2">
<div class="col-sm-4">
<label class="
${
css
.
compilerLabel
}
input-group-text pl-0 border-0" for="compilierLanguageSelector">Language</label>
<label class="
${
css
.
compilerLabel
}
form-check-label
input-group-text pl-0 border-0" for="compilierLanguageSelector">Language</label>
</div>
<div class="col-sm-8">
${
this
.
_view
.
languageSelector
}
...
...
@@ -265,7 +265,7 @@ class CompilerContainer {
</div>
<div class="row w-100 no-gutters">
<div class="col-sm-4">
<label class="
${
css
.
compilerLabel
}
input-group-text pl-0 border-0" for="evmVersionSelector">EVM Version</label>
<label class="
${
css
.
compilerLabel
}
form-check-label
input-group-text pl-0 border-0" for="evmVersionSelector">EVM Version</label>
</div>
<div class="col-sm-8">
${
this
.
_view
.
evmVersionSelector
}
...
...
@@ -280,15 +280,15 @@ class CompilerContainer {
<ul class="list-group list-group-flush">
<li class="list-group-item form-group
${
css
.
compilerConfig
}
">
${
this
.
_view
.
autoCompile
}
<label for="autoCompile">Auto compile</label>
<label
class="form-check-label"
for="autoCompile">Auto compile</label>
</li>
<li class="list-group-item form-group
${
css
.
compilerConfig
}
">
${
this
.
_view
.
optimize
}
<label for="optimize">Enable optimization</label>
<label
class="form-check-label"
for="optimize">Enable optimization</label>
</li>
<li class="list-group-item form-group
${
css
.
compilerConfig
}
">
${
this
.
_view
.
hideWarningsBox
}
<label for="hideWarningsBox">Hide warnings</label>
<label
class="form-check-label"
for="hideWarningsBox">Hide warnings</label>
</li>
</ul>
</article>
...
...
src/app/tabs/staticanalysis/staticAnalysisView.js
View file @
b6144ac2
...
...
@@ -158,7 +158,7 @@ staticAnalysisView.prototype.renderModules = function () {
var
category
=
groupedModules
[
categoryId
]
var
entriesDom
=
category
.
map
((
item
,
i
)
=>
{
return
yo
`
<label class="
${
css
.
label
}
">
<label class="
${
css
.
label
}
form-check-label
">
<input id="staticanalysismodule_
${
categoryId
}
_
${
i
}
"
type="checkbox"
class="staticAnalysisItem"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment