Skip to content

Commit 70d3084

Browse files
committed
Conditional Ember Data header
If the Ember Data overview is showing, give a more reasonable title instead of "Package ember-data-overview"
1 parent 97249c5 commit 70d3084

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

app/templates/project-version/modules/module.hbs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
<article class="chapter">
2-
<h1 class="module-name">Package {{this.model.name}}</h1>
2+
{{#if (eq this.model.name 'ember-data-overview')}}
3+
<h1 class="module-name">Ember Data Overview</h1>
4+
{{else}}
5+
<h1 class="module-name">Package {{this.model.name}}</h1>
6+
{{/if}}
37
{{#if this.model.access}}<span class="access">{{this.model.access}}</span>{{/if}}
48

59
<p class="attributes">

0 commit comments

Comments
 (0)