Browse Source

fix: JS when Portfolio widget created without a toolbar

George Cushen 4 years ago
parent
commit
f6090cd7e5
1 changed files with 5 additions and 1 deletions
  1. 5 1
      wowchemy/assets/js/wowchemy.js

+ 5 - 1
wowchemy/assets/js/wowchemy.js

@@ -491,7 +491,11 @@ $(window).on('load', function () {
     }
 
     // Get default filter (if any) for this instance
-    let filterText = isoSection.querySelector('.default-project-filter').textContent || '*';
+    let defaultFilter = isoSection.querySelector('.default-project-filter');
+    let filterText = '*';
+    if (defaultFilter !== null) {
+      filterText = defaultFilter.textContent;
+    }
     console.debug(`Default Isotope filter: ${filterText}`);
 
     // Init Isotope instance once its images have loaded.