Show branches content even if there's no defaultBranch
This commit is contained in:
parent
4443dc9ddd
commit
8e610a6191
|
@ -13,6 +13,12 @@ export default Ember.Controller.extend({
|
|||
}
|
||||
}.property('model'),
|
||||
|
||||
branchesExist: function() {
|
||||
var branches = this.get('model');
|
||||
|
||||
return branches.length;
|
||||
}.property('model'),
|
||||
|
||||
activeBranches: function() {
|
||||
var repos;
|
||||
repos = this.get('model');
|
||||
|
|
|
@ -1,11 +1,13 @@
|
|||
{{#if defaultBranch}}
|
||||
{{#if branchesExist}}
|
||||
<div class="branches">
|
||||
<section>
|
||||
<h2 class="small-title">Default Branch</h2>
|
||||
<ul class="blank-list">
|
||||
{{branch-row build=defaultBranch}}
|
||||
</ul>
|
||||
</section>
|
||||
{{#if defaultBranch}}
|
||||
<section>
|
||||
<h2 class="small-title">Default Branch</h2>
|
||||
<ul class="blank-list">
|
||||
{{branch-row build=defaultBranch}}
|
||||
</ul>
|
||||
</section>
|
||||
{{/if}}
|
||||
|
||||
{{#if activeBranches.length}}
|
||||
<section>
|
||||
|
|
Loading…
Reference in New Issue
Block a user