Skip to content

Commit bada308

Browse files
committed
fix(pfFilterPanelResults): Do not output ul.list-inline when no active filters
1 parent c1594ad commit bada308

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)