We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 74a8054 + ff73180 commit eca6385Copy full SHA for eca6385
packages/@ember/-internals/metal/lib/decorator.ts
@@ -124,7 +124,7 @@ export function makeComputedDecorator(
124
isClassicDecorator ||
125
!propertyDesc ||
126
!propertyDesc.get ||
127
- !COMPUTED_GETTERS.has(propertyDesc.get)
+ !(import.meta.env?.DEV && COMPUTED_GETTERS.has(propertyDesc.get))
128
);
129
130
let meta = arguments.length === 3 ? metaFor(target) : maybeMeta;
0 commit comments