Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions src/htmlContent/problems-panel-table.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
<table class="bottom-panel-table table table-striped table-condensed row-highlight">
<tbody>
{{#reportList}}
<tr class="inspector-section">
<td colspan="3"><span class="disclosure-triangle expanded"></span>{{providerName}} ({{results.length}})</td>
</tr>
{{#results}}
<tr>
<td class="line-number" data-character="{{pos.ch}}">{{friendlyLine}}</td>
<td>{{message}}</td>
<td>{{codeSnippet}}</td>
<td class="line-text">{{message}}</td>
<td class="line-snippet">{{codeSnippet}}</td>
</tr>
{{/results}}
{{/reportList}}
</tbody>
</table>
4 changes: 2 additions & 2 deletions src/htmlContent/problems-panel.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div id="problems-panel" class="bottom-panel vert-resizable top-resizer">
<div class="toolbar simple-toolbar-layout">
<div class="title"><!-- filled in programmatically with active linter's name --></div>
<div class="title"><!-- filled in programmatically --></div>
<a href="#" class="close">&times;</a>
</div>
<div class="table-container resizable-content"></div>
</div>
</div>
Loading