open-nomad/ui/app/components/reschedule-event-row.js

25 lines
696 B
JavaScript
Raw Normal View History

import Component from '@ember/component';
import { computed as overridable } from 'ember-overridable-computed';
import { inject as service } from '@ember/service';
import { tagName } from '@ember-decorators/component';
import classic from 'ember-classic-decorator';
@classic
@tagName('')
export default class RescheduleEventRow extends Component {
@service store;
// When given a string, the component will fetch the allocation
allocationId = null;
// An allocation can also be provided directly
@overridable('allocationId', function() {
2019-03-26 07:46:44 +00:00
return this.store.findRecord('allocation', this.allocationId);
})
allocation;
time = null;
linkToAllocation = true;
label = '';
}