Skip to content

Commit

Permalink
Upgrade JS dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
medihack authored Jul 6, 2024
1 parent e46c78d commit be3a83b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions adit_radis_shared/common/static/vendor/alpine.js
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@
) || objects[objects.length - 1];
const descriptor = Object.getOwnPropertyDescriptor(target, name);
if (descriptor?.set && descriptor?.get)
return Reflect.set(target, name, value, thisProxy);
return descriptor.set.call(thisProxy, value) || true;
return Reflect.set(target, name, value);
}
};
Expand Down Expand Up @@ -1642,7 +1642,7 @@ ${expression ? 'Expression: "' + expression + '"\n\n' : ""}`, el);
get raw() {
return raw;
},
version: "3.14.0",
version: "3.14.1",
flushAndStopDeferringMutations,
dontAutoEvaluateFunctions,
disableEffectScheduling,
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit be3a83b

Please sign in to comment.