homeflowjs 0.9.25 → 0.9.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,6 +5,9 @@ import replaceImageDimensions from './replaceImageDimensions';
5
5
  const ResponsiveImage = ({
6
6
  src, alt, srcSet, className, lazyload, ...otherProps
7
7
  }) => {
8
+
9
+ if(!src) return null;
10
+
8
11
  const renderSrcSet = () => {
9
12
  if (!srcSet) {
10
13
  return (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homeflowjs",
3
- "version": "0.9.25",
3
+ "version": "0.9.26",
4
4
  "description": "JavaScript toolkit for Homeflow themes",
5
5
  "main": "index.js",
6
6
  "scripts": {