Skip to content

Commit

Permalink
Fixed #1893 - added SlideMenu className support
Browse files Browse the repository at this point in the history
  • Loading branch information
mcandu committed Mar 26, 2021
1 parent 7078c50 commit 9fca82f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/slidemenu/SlideMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ export class SlideMenu extends Component {
}

renderElement() {
const className = classNames('p-slidemenu p-component', { 'p-slidemenu-overlay': this.props.popup });
const className = classNames('p-slidemenu p-component', { 'p-slidemenu-overlay': this.props.popup }, this.props.className);
const backward = this.renderBackward();

return (
Expand Down

0 comments on commit 9fca82f

Please sign in to comment.