Skip to content

Commit b7165d5

Browse files
authored
Merge pull request #699 from rhamilto/bz-1534320
fix(pfFilterPanelResults): Do not output ul.list-inline when no activ…
2 parents f8be2ee + bada308 commit b7165d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/filters/filter-panel/filter-panel-results.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ <h5>
66
{{$ctrl.config.resultsLabel === undefined ? "Results" : $ctrl.config.resultsLabel}}
77
</h5>
88
<p class="filter-pf-active-label" ng-if="$ctrl.config.appliedFilters.length">Active filters:</p>
9-
<ul class="list-inline">
9+
<ul class="list-inline" ng-if="$ctrl.config.appliedFilters.length">
1010
<li ng-repeat="filter in $ctrl.config.appliedFilters" class="filter-pf-category-item">
1111
<span class="label pf-filter-category-label" ng-class="{'label-info': filter.values.length === 1, 'multiples': filter.values.length > 1}">
1212
{{filter.title}}:

0 commit comments

Comments
 (0)