phoenix_live_view 1.1.21 → 1.1.23

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.
@@ -2269,7 +2269,7 @@ var DOMPatch = class {
2269
2269
  }
2270
2270
  if (this.isCIDPatch()) {
2271
2271
  const closestLock = targetContainer.closest(`[${PHX_REF_LOCK}]`);
2272
- if (closestLock) {
2272
+ if (closestLock && !closestLock.isSameNode(targetContainer)) {
2273
2273
  const clonedTree = dom_default.private(closestLock, PHX_REF_LOCK);
2274
2274
  if (clonedTree) {
2275
2275
  targetContainer = clonedTree.querySelector(
@@ -5896,7 +5896,7 @@ var LiveSocket = class {
5896
5896
  }
5897
5897
  // public
5898
5898
  version() {
5899
- return "1.1.21";
5899
+ return "1.1.23";
5900
5900
  }
5901
5901
  isProfileEnabled() {
5902
5902
  return this.sessionStorage.getItem(PHX_LV_PROFILE) === "true";