Skip to content

Commit

Permalink
fix(menuSelect): select in userCssClasses (#2455)
Browse files Browse the repository at this point in the history
* fix select in userCssClasses
* update snapshots
  • Loading branch information
markpinero authored and bobylito committed Oct 8, 2017
1 parent 9936a58 commit 0eb3dc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ exports[`menuSelect render correctly 1`] = `
"header": "ais-menu-select--header",
"option": "ais-menu-select--option",
"root": "ais-menu-select",
"select": "ais-menu-select--footer",
"select": "ais-menu-select--select",
}
}
items={
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/menu-select/menu-select.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export default function menuSelect({
root: cx(bem(null), userCssClasses.root),
header: cx(bem('header'), userCssClasses.header),
footer: cx(bem('footer'), userCssClasses.footer),
select: cx(bem('footer'), userCssClasses.footer),
select: cx(bem('select'), userCssClasses.select),
option: cx(bem('option'), userCssClasses.option),
};

Expand Down

0 comments on commit 0eb3dc8

Please sign in to comment.