Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix 652 - Bootstrap 4 dropdown-menu use 'show' instead of 'open' #4241

Merged
merged 1 commit into from
Sep 20, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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