diff --git a/app/components/class-field-description.hbs b/app/components/class-field-description.hbs
index eceadc0b..76c6cd2d 100644
--- a/app/components/class-field-description.hbs
+++ b/app/components/class-field-description.hbs
@@ -16,7 +16,7 @@
deprecated
{{/if}}
{{!-- TODO: Fix this link for a11y --}}
-
+
{{svg-jar 'link' width='20px' height='20px'}}
diff --git a/tests/acceptance/anchors-test.js b/tests/acceptance/anchors-test.js
index e4b9f649..d1ac6dec 100644
--- a/tests/acceptance/anchors-test.js
+++ b/tests/acceptance/anchors-test.js
@@ -11,7 +11,9 @@ module('Acceptance | Creating Anchors', function (hooks) {
await click(element);
assert.equal(
currentURL(),
- `/ember/1.0/classes/Container/properties?anchor=${element.innerText.trim()}`
+ `/ember/1.0/classes/Container/properties?anchor=${element.getAttribute(
+ 'data-test-anchor'
+ )}`
);
});
});