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.
This commit is contained in:
Piotr Sarnacki 2015-12-30 23:26:23 +01:00
parent ae704df6bf
commit 573ebfd406

View File

@ -2,13 +2,13 @@
<p>
<label>Branch:</label>
{{#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}}
</p>
<p>
<label>{{view Ember.Select content="view.formats" selection="view.statusImageFormat"}}</label>
{{view 'status-image-input' value="view.statusString" class="url" rows=3}}
<label>{{view Ember.Select content=view.formats selection=view.statusImageFormat}}</label>
{{view 'status-image-input' value=view.statusString class="url" rows=3}}
</p>