Skip to content

Commit

Permalink
Modified HIBP thehive template for truncate api requests as well, dep…
Browse files Browse the repository at this point in the history
…ends on stored data
  • Loading branch information
jonashergenhahn committed Aug 20, 2019
1 parent 21824fc commit 3e5a998
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<p ng-if="content.CompromisedAccounts.length > 0">
Compromised Accounts: {{content.CompromisedAccounts.length}}
</p>
<table class="table" ng-if="content.CompromisedAccounts && content.CompromisedAccounts.length > 0">
<table class="table" ng-if="content.CompromisedAccounts && content.CompromisedAccounts.length > 0 && content.CompromisedAccounts[0].hasOwnProperty('IsVerified')">
<thead>
<th width="120px">IsVerified</th>
<th>PwnCNT</th>
Expand Down Expand Up @@ -40,6 +40,16 @@
</tr>
</tbody>
</table>
<table class="table" ng-if="content.CompromisedAccounts && content.CompromisedAccounts.length > 0 && !content.CompromisedAccounts[0].hasOwnProperty('IsVerified')">
<thead>
<th>Name</th>
</thead>
<tbody ng-repeat="r in content.CompromisedAccounts">
<tr>
<td>{{r.Name}}</td>
</tr>
</tbody>
</table>
</div>
</div>

Expand Down
File renamed without changes.

0 comments on commit 3e5a998

Please sign in to comment.