
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.
15 lines
515 B
Handlebars
15 lines
515 B
Handlebars
<a href="#" class="close" {{action "close" target=view}}></a>
|
|
<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"}}
|
|
{{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}}
|
|
</p>
|