Skip to content

Commit adeb9e3

Browse files
authored
Merge pull request #264 from KnowWhereGraph/place-facet-spacing
Place facet spacing
2 parents 5e6f4b7 + 7d11f8b commit adeb9e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dr-app/public/pages/dr_resultsSearch.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,13 +243,13 @@ <h5 class="modal-title" id="exampleModalLabel">Query Timeout</h5>
243243
<p class="filter-title">EXPERTISE</p>
244244
<div class="filter">
245245
<div>Expert Topic(s)</div>
246-
<ul class="list-group checkbox-list" id="expert-list">
246+
<ul class="list-group" id="expert-list">
247247
<section ng-repeat="expertTopic in expertTopics['topics']">
248248
<li class="ng-binding ng-scope">
249249
<input id="{{expertTopic['expert_topic']}}" type="checkbox" class="form-check-input me-1" ng-click="selectSubList($event, 'selectTopic')"> {{expertTopic['expert_label']}}
250250
<img src="images/dropdown.svg" ng-click="showSubList($event)" />
251251
</li>
252-
<ul class="list-group list-group-indented" style="display: none">
252+
<ul class="list-group checkbox-list list-group-indented" style="display: none">
253253
<li ng-repeat="expertSubTopic in expertTopic['expert_subtopic'] track by $index">
254254
<input id="{{expertSubTopic}}" type="checkbox" class="form-check-input me-1" ng-click="selectTopic()" value="{{expertSubTopic}}" name="expert"> {{expertTopic['expert_sublabel'][$index]}}
255255
</li>

0 commit comments

Comments
 (0)