open-nomad/ui/app/components/job-row.js
Alex Dadgar e5ec915ac3 sync
2017-09-19 10:08:23 -05:00

25 lines
403 B
JavaScript

import Ember from 'ember';
const { Component } = Ember;
export default Component.extend({
tagName: 'tr',
classNames: ['job-row', 'is-interactive'],
job: null,
onClick() {},
click(event) {
this.get('onClick')(event);
},
didReceiveAttrs() {
// Reload the job in order to get detail information
const job = this.get('job');
if (job) {
job.reload();
}
},
});