Skip to content

Commit

Permalink
fix: Be more explicit about page-title helper
Browse files Browse the repository at this point in the history
  • Loading branch information
ynotdraw committed Aug 28, 2023
1 parent bf34c6d commit bb1e725
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion blueprints/app/files/app/templates/application.hbs
@@ -1,4 +1,4 @@
{{page-title "<%= namespace %>"}}
{{(page-title "<%= namespace %>")}}

<% if (welcome) { %>{{! The following component displays Ember's default welcome message. }}
<WelcomePage />
Expand Down
@@ -1,4 +1,4 @@
{{page-title "Dummy"}}
{{(page-title "Dummy")}}

<h2 id="title">Welcome to Ember</h2>

Expand Down
@@ -1,4 +1,4 @@
{{page-title "Dummy"}}
{{(page-title "Dummy")}}

{{! The following component displays Ember's default welcome message. }}
<WelcomePage />
Expand Down
@@ -1,4 +1,4 @@
{{page-title "Dummy"}}
{{(page-title "Dummy")}}

{{! The following component displays Ember's default welcome message. }}
<WelcomePage />
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/app/defaults/app/templates/application.hbs
@@ -1,4 +1,4 @@
{{page-title "Foo"}}
{{(page-title "Foo")}}

{{! The following component displays Ember's default welcome message. }}
<WelcomePage />
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/app/npm/app/templates/application.hbs
@@ -1,4 +1,4 @@
{{page-title "Foo"}}
{{(page-title "Foo")}}

<h2 id="title">Welcome to Ember</h2>

Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/app/pnpm/app/templates/application.hbs
@@ -1,4 +1,4 @@
{{page-title "Foo"}}
{{(page-title "Foo")}}

{{! The following component displays Ember's default welcome message. }}
<WelcomePage />
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/app/yarn/app/templates/application.hbs
@@ -1,4 +1,4 @@
{{page-title "Foo"}}
{{(page-title "Foo")}}

{{! The following component displays Ember's default welcome message. }}
<WelcomePage />
Expand Down

0 comments on commit bb1e725

Please sign in to comment.