Don't try to reload record if it's already loading
This commit is contained in:
parent
6877c3afc1
commit
485976d003
|
@ -26,7 +26,7 @@ Build = Model.extend DurationCalculations,
|
|||
console.log('config')
|
||||
if config = @get('_config')
|
||||
compact(config)
|
||||
else
|
||||
else if @get('currentState.stateName') != 'root.loading'
|
||||
return if @get('isFetchingConfig')
|
||||
@set 'isFetchingConfig', true
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ Job = Model.extend DurationCalculations,
|
|||
config: (->
|
||||
if config = @get('_config')
|
||||
compact(config)
|
||||
else
|
||||
else if @get('currentState.stateName') != 'root.loading'
|
||||
return if @get('isFetchingConfig')
|
||||
@set 'isFetchingConfig', true
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user