open-nomad/ui/app/components/task-group-row.js

17 lines
307 B
JavaScript

import Component from '@ember/component';
import { lazyClick } from '../helpers/lazy-click';
export default Component.extend({
tagName: 'tr',
classNames: ['task-group-row', 'is-interactive'],
taskGroup: null,
onClick() {},
click(event) {
lazyClick([this.get('onClick'), event]);
},
});