Received state should also indicate not started build
This commit is contained in:
parent
ae7586c121
commit
405cdd3dae
|
@ -51,7 +51,7 @@ Build = Model.extend DurationCalculations,
|
|||
).property('state')
|
||||
|
||||
notStarted: (->
|
||||
@get('state') in ['queued', 'created']
|
||||
@get('state') in ['queued', 'created', 'received']
|
||||
).property('state')
|
||||
|
||||
startedAt: (->
|
||||
|
|
|
@ -62,7 +62,7 @@ Job = Model.extend DurationCalculations,
|
|||
).property('state')
|
||||
|
||||
notStarted: (->
|
||||
@get('state') in ['queued', 'created']
|
||||
@get('state') in ['queued', 'created', 'received']
|
||||
).property('state')
|
||||
|
||||
clearLog: ->
|
||||
|
|
Loading…
Reference in New Issue
Block a user