8a4dc0726d
This closes #8422, another bug facilitated by the difficulty of automated testing when opening another window. Thanks to @notnoop for narrowing this down.
28 lines
700 B
JavaScript
28 lines
700 B
JavaScript
import Component from '@ember/component';
|
|
import { action } from '@ember/object';
|
|
import { inject as service } from '@ember/service';
|
|
import generateExecUrl from 'nomad-ui/utils/generate-exec-url';
|
|
import openExecUrl from 'nomad-ui/utils/open-exec-url';
|
|
import { tagName } from '@ember-decorators/component';
|
|
import classic from 'ember-classic-decorator';
|
|
|
|
@classic
|
|
@tagName('')
|
|
export default class OpenButton extends Component {
|
|
@service router;
|
|
|
|
@action
|
|
open() {
|
|
openExecUrl(this.generateUrl());
|
|
}
|
|
|
|
generateUrl() {
|
|
return generateExecUrl(this.router, {
|
|
job: this.job,
|
|
taskGroup: this.taskGroup,
|
|
task: this.task,
|
|
allocation: this.allocation,
|
|
});
|
|
}
|
|
}
|