Switch default job panel to output

This commit is contained in:
Jake McDermott
2019-10-09 13:05:27 -04:00
parent ff67d65065
commit c202574ae3
4 changed files with 8 additions and 8 deletions
@@ -52,7 +52,7 @@ class LaunchButton extends React.Component {
);
if (launchConfig.can_start_without_user_input) {
const { data: job } = await JobTemplatesAPI.launch(resource.id);
history.push(`/jobs/${job.id}/details`);
history.push(`/jobs/${job.id}`);
} else {
this.setState({ promptError: true });
}
@@ -95,7 +95,7 @@ class LaunchButton extends React.Component {
relaunchConfig.passwords_needed_to_start.length === 0
) {
const { data: job } = await relaunch;
history.push(`/jobs/${job.id}/details`);
history.push(`/jobs/${job.id}`);
} else {
this.setState({ promptError: true });
}