From 696905bd421bd81eb09387aaec1d853b4c08ec3e Mon Sep 17 00:00:00 2001 From: Godfrey Chan Date: Thu, 28 Mar 2019 11:11:15 -0400 Subject: [PATCH] [FEATURE ember-glimmer-angle-bracket-built-ins] Add missing dependent key There are no failing tests for this at the moment, because we only test with all optional features on or off. It turns out that the tracked property feature is masking this failure. As a result, the PR that enables this feature (#17811) without tracked property has some failing tests which should be green again after rebasing on top of this patch. --- packages/@ember/-internals/glimmer/lib/components/link-to.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/@ember/-internals/glimmer/lib/components/link-to.ts b/packages/@ember/-internals/glimmer/lib/components/link-to.ts index 5e09ae9caf2..574c8d333ed 100644 --- a/packages/@ember/-internals/glimmer/lib/components/link-to.ts +++ b/packages/@ember/-internals/glimmer/lib/components/link-to.ts @@ -818,6 +818,7 @@ if (EMBER_GLIMMER_ANGLE_BRACKET_BUILT_INS) { @private */ href: computed( + '_currentRouterState', '_route', '_models', '_query',