Skip to content

Commit

Permalink
Merge pull request #19536 from knownasilya/patch-8
Browse files Browse the repository at this point in the history
fix computed import deprecation import path
  • Loading branch information
rwjblue committed May 24, 2021
2 parents 7d0fab3 + 692c3b8 commit 8662ed6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@ember/object/index.js
Expand Up @@ -61,7 +61,7 @@ if (DEBUG) {
Object.defineProperty(computed, key, {
get() {
deprecate(
`Using \`computed.${key}\` has been deprecated. Instead, import the value directly from @ember/object/computed:\n\n import { ${key} } from '@ember/runloop';`,
`Using \`computed.${key}\` has been deprecated. Instead, import the value directly from @ember/object/computed:\n\n import { ${key} } from '@ember/object/computed';`,
false,
{
id: 'deprecated-run-loop-and-computed-dot-access',
Expand Down

0 comments on commit 8662ed6

Please sign in to comment.