Skip to content

Commit

Permalink
Make display a little more compact
Browse files Browse the repository at this point in the history
  • Loading branch information
booleandilemma committed Dec 22, 2024
1 parent 2e5f7c5 commit 3cb8cba
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions hn-blacklist.js
Original file line number Diff line number Diff line change
Expand Up @@ -737,18 +737,22 @@ function displayResults(filterResults, testResults) {
<td>
<table id="hnblacklist">
<tbody>
<tr><td><p>HN Blacklist Results:</p></td></tr>
<tr>
<td><p>Filtered by Source: ${filterResults.submissionsFilteredBySource}</p></td>
<td>
<p>HN Blacklist:</p>
</td>
</tr>
<tr>
<td>Filtered by Title: ${filterResults.submissionsFilteredByTitle}</td>
<td>
<p>Filtered:
${filterResults.submissionsFilteredBySource} by source,
${filterResults.submissionsFilteredByTitle} by title,
${filterResults.submissionsFilteredByUser} by user.
</p>
</td>
</tr>
<tr>
<td>Filtered by User: ${filterResults.submissionsFilteredByUser}</td>
</tr>
<tr>
<td>Test Results ${testResults.testCount - testResults.failCount}/${testResults.testCount} Passed</td>
<td>Test Results: ${testResults.testCount - testResults.failCount}/${testResults.testCount} Passed</td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit 3cb8cba

Please sign in to comment.