mirror of
https://github.com/valitydev/Cortex-Analyzers.git
synced 2024-11-07 17:38:53 +00:00
Fixes #195: Bug in MISPWarningLists long report
Results were not displayed correctly due to an wrong check.
This commit is contained in:
parent
938790c901
commit
b5b00ce25e
@ -5,7 +5,7 @@
|
||||
<div class="panel-body">
|
||||
<dl class="dl-horizontal" ng-if="content.results">
|
||||
<dt>Results:</dt>
|
||||
<dd ng-if="content.results.results">
|
||||
<dd ng-if="content.results.length > 0">
|
||||
<p>
|
||||
Observable was found in following MISP warning lists:
|
||||
</p>
|
||||
@ -13,7 +13,7 @@
|
||||
<li>{{list.name}}</li>
|
||||
</ul>
|
||||
</dd>
|
||||
<dd ng-if="!content.results.results">
|
||||
<dd ng-if="content.results.length == 0">
|
||||
<p>
|
||||
Observable was not found in warning lists.
|
||||
</p>
|
||||
|
Loading…
Reference in New Issue
Block a user