Label are disabling while upgrading Ember version

I’m upgrading the ember from 1.4.0 to 1.12. While upgrading labels are not showing

This is my code for corresponding HBR file

{{#if view.disclosed}}
    <div class="checkbox-set">
        <ul class="check-list">
            {{#each location in view.options }}
                {{#if location.display}}
                    <li class="check-list-entry location" {{bind-attr title="location.managedObject.label"}}>
                        {{#view view.Checkbox name=view.model.name label="" checked=location.checked value=location.id}}
                            {{mo-icon location.managedObject size=20}}
                            <mo-label>{{{location.label}}}</mo-label>
                        {{/view}}
                        {{view view.RemoveButton location=location}}
                    </li>
                {{/if}}
            {{/each}}
        </ul>
        {{icon "add" click=view.addLocation}}
    </div>
{{/if}}

I need to enable the label details by using the above HBR file code.