change logic of displaying noPR builds message
This commit is contained in:
parent
72b214e5b8
commit
d15d35a9ff
|
@ -22,7 +22,9 @@ Controller = Ember.ArrayController.extend
|
|||
).property('tab', 'lastObject.number')
|
||||
|
||||
displayPullRequests: (->
|
||||
if @get('tab') == 'pull_requests'
|
||||
if Ember.isEmpty(@get('repo.builds.content'))
|
||||
return false # if there is no build there is no PR
|
||||
else if Ember.isEmpty(@get('repo.pullRequests.content'))
|
||||
return true
|
||||
else
|
||||
return false
|
||||
|
|
Loading…
Reference in New Issue
Block a user