react-google-maps
Advanced tools
Comparing version 4.10.2 to 4.10.3
@@ -0,1 +1,11 @@ | ||
<a name="4.10.3"></a> | ||
## [4.10.3](https://github.com/tomchentw/react-google-maps/compare/v4.10.2...v4.10.3) (2016-05-29) | ||
### Bug Fixes | ||
* **GoogleMapLoader:** handle unmount ref case ([334c5c9](https://github.com/tomchentw/react-google-maps/commit/334c5c9)) | ||
<a name="4.10.2"></a> | ||
@@ -2,0 +12,0 @@ ## [4.10.2](https://github.com/tomchentw/react-google-maps/compare/v4.10.1...v4.10.2) (2016-05-29) |
@@ -45,3 +45,3 @@ "use strict"; | ||
value: function mountGoogleMap(domEl) { | ||
if (this.state.map) { | ||
if (this.state.map || domEl === null) { | ||
return; | ||
@@ -48,0 +48,0 @@ } |
{ | ||
"name": "react-google-maps", | ||
"version": "4.10.2", | ||
"version": "4.10.3", | ||
"description": "React.js Google Maps integration component", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -28,3 +28,3 @@ import { | ||
mountGoogleMap(domEl) { | ||
if (this.state.map) { | ||
if (this.state.map || domEl === null) { | ||
return; | ||
@@ -31,0 +31,0 @@ } |
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
377099