Skip to content

Commit

Permalink
Merge pull request #4241 from adube/V2_4-652-fix-filter-criterias
Browse files Browse the repository at this point in the history
Fix 652 - Bootstrap 4 dropdown-menu use 'show' instead of 'open'
  • Loading branch information
fredj committed Sep 20, 2018
2 parents d0c4572 + d3f4058 commit 453c721
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/filter/rulecomponent.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<div
class="dropdown"
ng-class="{open: $ctrl.rule.active}">
<div class="dropdown">
<button
class="btn btn-default btn-sm btn-block dropdown-toggle"
type="button"
data-toggle="dropdown"
ng-click="$ctrl.toggle()">
<span>{{ ::$ctrl.clone.name | translate }}</span>
</button>
<div class="dropdown-menu form-group">
<div
class="dropdown-menu form-group"
ng-class="{show: $ctrl.rule.active}">

<select
class="form-control ngeo-rule-operators-list"
Expand Down

0 comments on commit 453c721

Please sign in to comment.