diff --git a/app/templates/annotations/list.hbs b/app/templates/annotations/list.hbs index 663f6303..45cd5487 100644 --- a/app/templates/annotations/list.hbs +++ b/app/templates/annotations/list.hbs @@ -1,6 +1,6 @@ {{#if view.annotations}}
- {{#each annotation in view.annotations}} + {{#each view.annotations as |annotation|}}
{{annotation.status}} {{annotation.providerName}} diff --git a/app/templates/components/add-env-var.hbs b/app/templates/components/add-env-var.hbs index d891308f..428b3af0 100644 --- a/app/templates/components/add-env-var.hbs +++ b/app/templates/components/add-env-var.hbs @@ -1,6 +1,6 @@
{{#if enabled}} - {{input pattern="/^[0-9]+$/" value=value on="key-up" action="limitChanged"}} + {{input pattern="/^[0-9]+$/" value=value key-up="limitChanged"}} {{/if}} {{#if isSaving}} {{loading-indicator inline=true}} diff --git a/app/templates/dashboard/repositories.hbs b/app/templates/dashboard/repositories.hbs index 5285f34f..5493d13e 100644 --- a/app/templates/dashboard/repositories.hbs +++ b/app/templates/dashboard/repositories.hbs @@ -17,7 +17,7 @@ --}}
    - {{#each repo in filteredRepositories}} + {{#each filteredRepositories as |repo|}} {{dashboard-row repo=repo}} {{else}} {{no-repos}} diff --git a/app/templates/events/list.hbs b/app/templates/events/list.hbs index 56fc64bd..c0e895e4 100644 --- a/app/templates/events/list.hbs +++ b/app/templates/events/list.hbs @@ -10,8 +10,8 @@ - {{#each event in view.events}} - {{#view "events-item" contextBinding="event"}} + {{#each view.events as |event|}} + {{#view "events-item" context="event"}} {{format-time createdAt}} diff --git a/app/templates/helpers/travis-errors.hbs b/app/templates/helpers/travis-errors.hbs index 1f8c68c6..394cd011 100644 --- a/app/templates/helpers/travis-errors.hbs +++ b/app/templates/helpers/travis-errors.hbs @@ -1 +1 @@ -{{#each error in view.errors}}{{error.message}}{{/each}} +{{#each view.errors as |error|}}{{error.message}}{{/each}} diff --git a/app/templates/profile/accounts.hbs b/app/templates/profile/accounts.hbs index b4c4124e..36e66626 100644 --- a/app/templates/profile/accounts.hbs +++ b/app/templates/profile/accounts.hbs @@ -26,7 +26,7 @@

    Organizations

    - {{#collection "accounts-list" contentBinding="organizations"}} + {{#collection "accounts-list" content="organizations"}} {{#link-to "account" view.account class="name"}}
    diff --git a/app/templates/status-images.hbs b/app/templates/status-images.hbs index 7efbe96d..2e49845c 100644 --- a/app/templates/status-images.hbs +++ b/app/templates/status-images.hbs @@ -2,13 +2,13 @@

    {{#if view.branches.isLoaded}} - {{view Ember.Select contentBinding="view.branches" selectionBinding="view.statusImageBranch" optionLabelPath="content.commit.branch" optionValuePath="content.commit.branch"}} + {{view Ember.Select content="view.branches" selection="view.statusImageBranch" optionLabelPath="content.commit.branch" optionValuePath="content.commit.branch"}} {{else}} {{loading-indicator}} {{/if}}

    - - {{view 'status-image-input' valueBinding="view.statusString" class="url" rows=3}} + + {{view 'status-image-input' value="view.statusString" class="url" rows=3}}