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:
parent
21285bbe8b
commit
f9263fc8f3
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue
Block a user