open-nomad/ui/app/components/job-page/periodic.js
Michael Lange 52a7a48177 Don't use generic ACL error messages
When the error is actually a 403, an ACL error is appropriate, but when
it isn't, fallback on what the API returns.
2021-01-28 12:18:53 -08:00

28 lines
666 B
JavaScript

import AbstractJobPage from './abstract';
import { inject as service } from '@ember/service';
import { action } from '@ember/object';
import classic from 'ember-classic-decorator';
import messageForError from 'nomad-ui/utils/message-from-adapter-error';
@classic
export default class Periodic extends AbstractJobPage {
@service store;
errorMessage = null;
@action
forceLaunch() {
this.job.forcePeriodic().catch(err => {
this.set('errorMessage', {
title: 'Could Not Force Launch',
description: messageForError(err, 'submit jobs'),
});
});
}
@action
clearErrorMessage() {
this.set('errorMessage', null);
}
}