Skip to content

Commit

Permalink
fix test & analysis view
Browse files Browse the repository at this point in the history
  • Loading branch information
yann300 committed Apr 4, 2019
1 parent 1205d86 commit 02b80e9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
6 changes: 4 additions & 2 deletions src/app/staticanalysis/staticAnalysisView.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,10 @@ staticAnalysisView.prototype.render = function () {
</div>
<div id="staticanalysismodules" class="list-group list-group-flush ${css.container}">
${this.modulesView}
</div>
<div class="${css.result}" "id='staticanalysisresult'></div>
</div>
<hr>
<div><h6>Results:</h6></div>
<div class="${css.result}" id='staticanalysisresult'></div>
</div>
`
if (!this.view) {
Expand Down
4 changes: 3 additions & 1 deletion src/app/staticanalysis/styles/staticAnalysisView-styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ var css = csjs`
}
.result {
margin-top: 1%;
max-height: 400px;
overflow-y: auto;
}
.buttons {
margin: 1rem 0;
Expand All @@ -26,7 +28,7 @@ var css = csjs`
align-items: center;
}
.container {
max-height: 500px;
max-height: 400px;
overflow-y: auto;
}
`
Expand Down
4 changes: 3 additions & 1 deletion src/app/tabs/styles/test-tab-styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@ var css = csjs`
display: flex;
flex-direction: column;
margin: 2%;
max-height: 500px;
max-height: 300px;
overflow-y: auto;
}
.container {
margin: 2%;
padding-bottom: 5%;
max-height: 300px;
overflow-y: auto;
}
.outputTitle {
font-weight: bold;
Expand Down
2 changes: 2 additions & 0 deletions src/app/tabs/test-tab.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,8 @@ module.exports = class TestTab extends ApiFactory {
</label>
</div>
${this.testList}
<hr>
<div class="${css.buttons}" ><h6>Results:</h6></div>
${this.testsOutput}
${this.testsSummary}
</div>
Expand Down

0 comments on commit 02b80e9

Please sign in to comment.