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.
1 parent 5c339e2 commit 7d86269Copy full SHA for 7d86269
app/templates/project-version/modules/module.hbs
@@ -33,11 +33,13 @@
33
<h2>Classes</h2>
34
<ul class="spec-property-list">
35
{{#each classesAndNamespaces as |klass|}}
36
- <li>
37
- {{#link-to 'project-version.classes.class' klass}}
38
- {{klass}}
39
- {{/link-to}}
40
- </li>
+ {{#if (not (and (eq model.name "ember-data") (eq klass "Ember")))}}
+ <li>
+ {{#link-to 'project-version.classes.class' klass}}
+ {{klass}}
+ {{/link-to}}
41
+ </li>
42
+ {{/if}}
43
{{/each}}
44
</ul>
45
</section>
0 commit comments