diff --git a/core/client/templates/-import-errors.hbs b/core/client/templates/-import-errors.hbs index 2958b34e7c..b7364efaff 100644 --- a/core/client/templates/-import-errors.hbs +++ b/core/client/templates/-import-errors.hbs @@ -1,7 +1,7 @@ {{#if importErrors}} -{{#each importErrors}} - +{{#each error in importErrors}} + {{/each}}
{{message}}
{{error.message}}
-{{/if}} \ No newline at end of file +{{/if}} diff --git a/core/client/templates/application.hbs b/core/client/templates/application.hbs index 05fee0818f..fc89f50ad6 100644 --- a/core/client/templates/application.hbs +++ b/core/client/templates/application.hbs @@ -10,6 +10,6 @@ {{outlet}} -{{outlet modal}} +{{outlet "modal"}} -{{outlet settings-menu}} +{{outlet "settings-menu"}} diff --git a/core/client/templates/components/gh-notifications.hbs b/core/client/templates/components/gh-notifications.hbs index 779cade112..5ff9838c42 100644 --- a/core/client/templates/components/gh-notifications.hbs +++ b/core/client/templates/components/gh-notifications.hbs @@ -1,3 +1,3 @@ -{{#each messages}} - {{gh-notification message=this}} +{{#each message in messages}} + {{gh-notification message=message}} {{/each}} diff --git a/core/client/templates/components/gh-role-selector.hbs b/core/client/templates/components/gh-role-selector.hbs index 386203c910..f226d13fa2 100644 --- a/core/client/templates/components/gh-role-selector.hbs +++ b/core/client/templates/components/gh-role-selector.hbs @@ -1,5 +1,5 @@ diff --git a/core/client/templates/error.hbs b/core/client/templates/error.hbs index ecb168b2fd..e268a38108 100644 --- a/core/client/templates/error.hbs +++ b/core/client/templates/error.hbs @@ -16,11 +16,11 @@

Stack Trace

{{message}}

diff --git a/core/client/templates/post-tags-input.hbs b/core/client/templates/post-tags-input.hbs index 630d7d4310..9a070225a2 100644 --- a/core/client/templates/post-tags-input.hbs +++ b/core/client/templates/post-tags-input.hbs @@ -5,8 +5,8 @@
- {{#each controller.tags}} - {{name}} + {{#each tag in controller.tags}} + {{tag.name}} {{/each}}
@@ -14,8 +14,8 @@ {{view view.tagInputView class="tag-input js-tag-input" id="tags" value=newTagText}}