diff --git a/CHANGELOG.md b/CHANGELOG.md index c685a19..f90532e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +## 0.2.6 - Nov 20, 2015 + +**Bugfix from PR:** + +* Fix wrapper styles override. + + ## 0.2.5 - Oct 15, 2015 **Implemented enhancements:** diff --git a/package.json b/package.json index f1e8970..65148fe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-notification-system", - "version": "0.2.5", + "version": "0.2.6", "description": "A React Notification System fully customized", "main": "dist/NotificationSystem.js", "scripts": { diff --git a/src/NotificationSystem.jsx b/src/NotificationSystem.jsx index dc4dc46..c11b4e1 100644 --- a/src/NotificationSystem.jsx +++ b/src/NotificationSystem.jsx @@ -19,7 +19,7 @@ var NotificationSystem = React.createClass({ wrapper: function() { if (!this.overrideStyle) return {}; - return merge({}, Styles.Wrapper, this.overrideStyle); + return merge({}, Styles.Wrapper, this.overrideStyle.Wrapper); }, container: function(position) {