phoenix_live_view 1.1.29 → 1.1.30

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.
@@ -1431,7 +1431,7 @@ Hooks.InfiniteScroll = {
1431
1431
  }
1432
1432
  },
1433
1433
  updated() {
1434
- if (!this.scrollContainer.isConnected) {
1434
+ if (this.scrollContainer && !this.scrollContainer.isConnected) {
1435
1435
  this.destroyed();
1436
1436
  this.mounted();
1437
1437
  }
@@ -5948,7 +5948,7 @@ var LiveSocket = class {
5948
5948
  }
5949
5949
  // public
5950
5950
  version() {
5951
- return "1.1.29";
5951
+ return "1.1.30";
5952
5952
  }
5953
5953
  isProfileEnabled() {
5954
5954
  return this.sessionStorage.getItem(PHX_LV_PROFILE) === "true";