From 573ebfd406a1f19a2296bef2cfb77f952efe9d72 Mon Sep 17 00:00:00 2001 From: Piotr Sarnacki Date: Wed, 30 Dec 2015 23:26:23 +0100 Subject: [PATCH] Fix status image popup While fixing deprecations a `propertyBinding="foo"` calls were changed into `property="foo"` calls, which should be `property=foo`. Otherwise `foo` is treated as a string. --- app/templates/status-images.hbs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/templates/status-images.hbs b/app/templates/status-images.hbs index 2e49845c..bd13f435 100644 --- a/app/templates/status-images.hbs +++ b/app/templates/status-images.hbs @@ -2,13 +2,13 @@

{{#if view.branches.isLoaded}} - {{view Ember.Select content="view.branches" selection="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' value="view.statusString" class="url" rows=3}} + + {{view 'status-image-input' value=view.statusString class="url" rows=3}}