Comparing version 1.0.0 to 1.0.1
@@ -7,4 +7,8 @@ # Changelog | ||
## [1.0.0] | ||
## [1.0.1] - 2018-05-02 | ||
### Fixed | ||
- Fix incorrect equality operator when checking for changed `disabled` prop | ||
## [1.0.0] - 2018-05-02 | ||
### Added | ||
- Initial Release |
@@ -96,3 +96,3 @@ "use strict"; | ||
var disabled = this.props.disabled; | ||
if (disabled !== wasDisabled) { | ||
if (disabled === wasDisabled) { | ||
return; | ||
@@ -99,0 +99,0 @@ } |
{ | ||
"name": "app-bar", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "An app bar for React that stays out of your way", | ||
@@ -5,0 +5,0 @@ "licence": "MIT", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12443