Skip to content

Commit 816bc4d

Browse files
Dropdown className added.
version upgrade v0.4.10
1 parent 73acfbf commit 816bc4d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-chat-elements",
3-
"version": "0.4.9",
3+
"version": "0.4.10",
44
"description": "Reactjs chat components",
55
"author": "Avare Kodcu <abdurrahmaneker58@gmail.com>",
66
"main": "dist/main.js",

src/Dropdown/Dropdown.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export class Dropdown extends Component {
2121

2222
render() {
2323
return (
24-
<div className='rce-dropdown-container' onBlur={this.onBlur.bind(this)}>
24+
<div className={classNames('rce-dropdown-container', this.props.className)} onBlur={this.onBlur.bind(this)}>
2525
{
2626
<Button
2727
{...this.props.buttonProps}

0 commit comments

Comments
 (0)