
This commit refactors repo-actions support to use components and make the implementation much simpler. It also fixes a bug with buttons being displayed when they shouldn't be.
10 lines
304 B
CoffeeScript
10 lines
304 B
CoffeeScript
`import Ember from 'ember'`
|
|
`import RepoActionsItemComponentMixin from 'travis/utils/repo-actions-item-component-mixin'`
|
|
|
|
BuildRepoActionsComponent = Ember.Component.extend(RepoActionsItemComponentMixin,
|
|
item: Ember.computed.alias('build')
|
|
type: 'build'
|
|
)
|
|
|
|
`export default BuildRepoActionsComponent`
|