Skip to content

Commit

Permalink
Merge branch 'release/0.2.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
igorprado committed Nov 20, 2015
2 parents 84c0f3b + 4b2da64 commit 5a5a411
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion src/NotificationSystem.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 5a5a411

Please sign in to comment.