Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
fix(Dropdown): fix d-flex class check
Browse files Browse the repository at this point in the history
  • Loading branch information
jonthomp committed Jun 2, 2018
1 parent 5500e44 commit f85b58a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Dropdown/Dropdown.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ class Dropdown extends React.Component<Props, State> {
"d-none": desktopOnly,
"d-md-flex": desktopOnly || flex === "md",
[`d-{flex}-flex`]: ["xs", "sm", "lg", "xl"].includes(flex),
"d-flex": typeof flex === "boolean",
"d-flex": flex === true,
"card-options-dropdown": isOption,
show: this.state.isOpen,
},
Expand Down

0 comments on commit f85b58a

Please sign in to comment.