c8b3e91d4a
Now that job summary is pushed into the store from the list request and the task group count is derived from the summary, the detailed job information is no longer needed for a job row.
19 lines
366 B
JavaScript
19 lines
366 B
JavaScript
import { inject as service } from '@ember/service';
|
|
import Component from '@ember/component';
|
|
import { lazyClick } from '../helpers/lazy-click';
|
|
|
|
export default Component.extend({
|
|
store: service(),
|
|
|
|
tagName: 'tr',
|
|
classNames: ['job-row', 'is-interactive'],
|
|
|
|
job: null,
|
|
|
|
onClick() {},
|
|
|
|
click(event) {
|
|
lazyClick([this.get('onClick'), event]);
|
|
},
|
|
});
|