Skip to content

Commit

Permalink
🐛 fix(core): Bug de récursivité infinie sur le getter node [DS-3841] (#…
Browse files Browse the repository at this point in the history
…993)

- Correction du retour du getter instance.node qui engendrait une boucle infinie
  • Loading branch information
keryanS authored Oct 22, 2024
2 parents fe9d66b + 7b7ffb8 commit e49ec50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/script/api/modules/register/instance.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class Instance {

const proxyAccessors = {
get node () {
return this.node;
return scope.node;
},
get isEnabled () {
return scope.isEnabled;
Expand Down

0 comments on commit e49ec50

Please sign in to comment.