1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 08:21:15 +03:00

Fix job output name in websocket service.

This commit is contained in:
Kia Lam 2019-04-09 17:04:30 -04:00
parent 57b3565f42
commit b978a28f8b
No known key found for this signature in database
GPG Key ID: 294F9BE53C241D03

View File

@ -96,8 +96,7 @@ export default
$log.debug('Received From Server: ' + e.data);
var data = JSON.parse(e.data), str = "";
if(!window.liveUpdates && data.group_name !== "control" && $state.current.name !== "jobResult"){
if(!window.liveUpdates && data.group_name !== "control" && $state.current.name !== "output"){
$log.debug('Message from server dropped: ' + e.data);
needsRefreshAfterBlur = true;
return;