Skip to content

Commit

Permalink
Add condition field to SCA check information (#872)
Browse files Browse the repository at this point in the history
  • Loading branch information
pablotr9 authored Mar 12, 2020
1 parent 1c24a49 commit 14806b9
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@
</td>
</tr>
<tr class="wz-word-wrap backgroundSky"
ng-if="item.expanded && (item.rationale || item.remediation || item.directory || item.compliance.length > 0)"
ng-if="item.expanded && (item.rationale || item.remediation || item.directory || item.condition || item.compliance.length > 0)"
ng-repeat-end="">
<td colspan="{{keys.length}}" style="border-top: none">
<md-card>
Expand All @@ -281,6 +281,10 @@
<span class="tSize16">Rationale</span>
<p class="wz-margin-top-10 pExpanded wz-text-sca">{{item.rationale}}</p>
</div>
<div layout="column" ng-if="item.condition" class="wz-margin-top-10 expandedDiv">
<span class="tSize16">Condition</span>
<p class="wz-margin-top-10 pExpanded wz-text-sca">{{item.condition}}</p>
</div>
<div layout="column" ng-if="item.remediation" class="wz-margin-top-10 expandedDiv">
<span class="tSize16">Remediation</span>
<p class="wz-margin-top-10 pExpanded wz-text-sca">{{item.remediation}}</p>
Expand Down

0 comments on commit 14806b9

Please sign in to comment.