
We sometimes miss pusher updates, which started to be more common lately. Until we investigate what's going on, this should be a good workaround for keeping UI in sync with the DB.
9 lines
199 B
CoffeeScript
9 lines
199 B
CoffeeScript
`import Ember from 'ember'`
|
|
`import Polling from 'travis/mixins/polling'`
|
|
|
|
RunningJobsItemComponent = Ember.Component.extend(Polling,
|
|
pollModels: 'job'
|
|
)
|
|
|
|
`export default RunningJobsItemComponent`
|