mirror of
https://github.com/ansible/awx.git
synced 2026-01-23 23:41:23 -03:30
Merge pull request #183 from jlmitch5/fixIScriptsActivityStream
Fix i scripts activity stream
This commit is contained in:
commit
278e0335ca
@ -111,8 +111,10 @@ export default
|
||||
stateGoParams.id = $state.params[streamConfig.activityStreamId];
|
||||
}
|
||||
if(stateGoParams.target === "custom_inventory_script"){
|
||||
stateGoParams.activity_search[streamConfig.activityStreamTarget] = $state.params.inventory_script_id;
|
||||
stateGoParams.id = $state.params.inventory_script_id;
|
||||
if ($state.params.inventory_script_id !== undefined) {
|
||||
stateGoParams.activity_search[streamConfig.activityStreamTarget] = $state.params.inventory_script_id;
|
||||
stateGoParams.id = $state.params.inventory_script_id;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user