mirror of https://github.com/rancher/ui.git
18 lines
379 B
JavaScript
18 lines
379 B
JavaScript
import { inject as service } from '@ember/service';
|
|
import Component from '@ember/component';
|
|
import layout from './template';
|
|
|
|
export default Component.extend({
|
|
layout,
|
|
scope: service(),
|
|
pipeline: service(),
|
|
showGroup: true,
|
|
|
|
tagName: '',
|
|
allStacks: null,
|
|
init() {
|
|
this._super(...arguments);
|
|
this.set('allStacks', this.get('store').all('stack'));
|
|
},
|
|
});
|