Skip to content

Commit 57b7e4a

Browse files
committed
Auto merge of #2570 - Turbo87:title, r=locks
Replace `{{ title }}` with `{{page-title}}` turns out searching for `{{title` doesn't catch the usages that have a space between the curlies and the helper name πŸ˜… r? @locks
2 parents bae5c6d + a8bdf19 commit 57b7e4a

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

β€Žapp/templates/categories.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ title 'Categories' }}
1+
{{page-title 'Categories'}}
22

33
<PageHeader @title="All Categories"/>
44

β€Žapp/templates/category-slugs.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ title 'Category Slugs' }}
1+
{{page-title 'Category Slugs'}}
22

33
<PageHeader @title="All Valid Category Slugs"/>
44

β€Žapp/templates/category/error.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{{ title 'Category Not Found' }}
1+
{{page-title 'Category Not Found'}}

β€Žapp/templates/category/index.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ title this.category.category ' - Categories' }}
1+
{{page-title this.category.category ' - Categories'}}
22

33
<PageHeader local-class="header">
44
<LinkTo @route="categories" aria-label="Categories">{{svg-jar "crate"}}</LinkTo>

β€Žapp/templates/crate/error.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{{ title 'Crate Not Found' }}
1+
{{page-title 'Crate Not Found'}}

β€Žapp/templates/crate/owners.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ title 'Manage Crate Owners' }}
1+
{{page-title 'Manage Crate Owners'}}
22

33
<PageHeader
44
@title="Manager Crate Owners"

β€Žapp/templates/crates.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ title 'Crates' }}
1+
{{page-title 'Crates'}}
22

33
<PageHeader @title="All Crates" @suffix={{if this.letter (concat "starting with '" this.letter "'")}}/>
44

β€Žapp/templates/dashboard.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ title 'Dashboard' }}
1+
{{page-title 'Dashboard'}}
22

33
<PageHeader local-class="header">
44
{{svg-jar "dashboard" local-class="header-icon"}}

β€Žapp/templates/keyword/error.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{{ title 'Keyword Not Found' }}
1+
{{page-title 'Keyword Not Found'}}

β€Žapp/templates/keyword/index.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ title this.keyword.keyword ' - Keywords' }}
1+
{{page-title this.keyword.keyword ' - Keywords'}}
22

33
<PageHeader @title="All Crates" @suffix="for keyword '{{this.keyword.keyword}}'"/>
44

β€Žapp/templates/keywords.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ title 'Keywords' }}
1+
{{page-title 'Keywords'}}
22

33
<PageHeader @title="All Keywords"/>
44

β€Žapp/templates/me/crates.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ title 'My Crates' }}
1+
{{page-title 'My Crates'}}
22

33
<PageHeader @title="My Crates"/>
44

β€Žapp/templates/me/index.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ title 'Settings' }}
1+
{{page-title 'Settings'}}
22

33
<PageHeader @title="Account Settings" @icon="gear"/>
44

β€Žapp/templates/me/pending-invites.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ title 'Pending Invites' }}
1+
{{page-title 'Pending Invites'}}
22

33
<PageHeader @title="Pending Owner Invites" @icon="gear"/>
44

0 commit comments

Comments
Β (0)