react-css-collapse
Advanced tools
Comparing version 3.3.1 to 3.3.2
# Changelog | ||
# 3.3.2 | ||
> July 05, 2018 | ||
* :bug: **Bugfix** Added nullcheck to make sure we wont try to set style on nonexisting content | ||
# 3.3.1 | ||
@@ -4,0 +8,0 @@ > July 05, 2018 |
@@ -110,3 +110,5 @@ 'use strict'; | ||
value: function setContentStyleProperty(property, value) { | ||
this.content.style[property] = value; | ||
if (this.content) { | ||
this.content.style[property] = value; | ||
} | ||
} | ||
@@ -113,0 +115,0 @@ }, { |
{ | ||
"name": "react-css-collapse", | ||
"version": "3.3.1", | ||
"version": "3.3.2", | ||
"description": "Component-wrapper for collapse animation with css for elements with variable and dynamic height", | ||
@@ -5,0 +5,0 @@ "authors": [ |
Sorry, the diff of this file is not supported yet
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
38524
319