« get me outta code hell

cacheable-object: updating properties always depend on themselves - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/cacheable-object.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2026-01-01 14:43:10 -0400
committer(quasar) nebula <qznebula@protonmail.com>2026-01-01 14:43:10 -0400
commitc07f829ad3571f2563d052f33fac6b6be523f602 (patch)
treea53b53768caed3bb482c785ac40889bcdee9220e /src/data/cacheable-object.js
parent0c823c9817f960db16e13f52a8c27ef740f24a40 (diff)
cacheable-object: updating properties always depend on themselves
Diffstat (limited to 'src/data/cacheable-object.js')
-rw-r--r--src/data/cacheable-object.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data/cacheable-object.js b/src/data/cacheable-object.js
index 9c655823..0071c60d 100644
--- a/src/data/cacheable-object.js
+++ b/src/data/cacheable-object.js
@@ -259,7 +259,7 @@ function validatePropertyValue(property, oldValue, newValue, update) {
 function* dependenciesOf(property, propertyDescriptors, cycle = []) {
   const descriptor = propertyDescriptors[property];
 
-  if (descriptor?.flags?.update && descriptor?.expose?.transform) {
+  if (descriptor?.flags?.update) {
     yield property;
   }