Skip to content

Commit

Permalink
#594 Hide text when no tags are available on related cases
Browse files Browse the repository at this point in the history
  • Loading branch information
nadouani committed Aug 23, 2018
1 parent 42b789e commit 1eac003
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/app/views/partials/case/details/related.cases.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h5>Newest (<a href ui-sref="app.case.details({caseId:links[0].id})">Case # {{ne
(<ng-pluralize count="newestLink.iocCount" when="{'0': 'No IOCs', 'one': '1 IOC', 'other': '{} IOCs'}"></ng-pluralize>)
</strong>
</div>
<div>
<div ng-if="newestLink.tags.length > 0">
Tagged as <tag-list data="newestLink.tags"></tag-list>
</div>
<div class="hr-line-dashed"></div>
Expand All @@ -30,7 +30,7 @@ <h5>Oldest (<a href ui-sref="app.case.details({caseId:oldestLink.id})">Case # {{
(<ng-pluralize count="oldestLink.iocCount" when="{'one': '1 IOC', 'other': '{} IOCs'}"></ng-pluralize>)
</strong>
</div>
<div>
<div ng-if="oldestLink.tags.length > 0">
Tagged as <tag-list data="oldestLink.tags"></tag-list>
</div>
<div class="hr-line-dashed"></div>
Expand Down

0 comments on commit 1eac003

Please sign in to comment.