mirror of
https://github.com/ZwareBear/awx.git
synced 2026-05-17 16:28:36 -05:00
Switch default job panel to output
This commit is contained in:
@@ -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 });
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user