mirror of
https://github.com/ansible/awx.git
synced 2026-01-10 15:32:07 -03:30
Merge pull request #5582 from jakemcdermott/fix-5265
Don't refresh settings on websocket event Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
commit
d941f11ccd
@ -104,7 +104,12 @@ export default
|
||||
$rootScope.$broadcast('ws-approval');
|
||||
}
|
||||
|
||||
if(!window.liveUpdates && data.group_name !== "control" && $state.current.name !== "output"){
|
||||
if (
|
||||
!window.liveUpdates &&
|
||||
data.group_name !== "control" &&
|
||||
$state.current.name !== "output" &&
|
||||
!$state.current.name.includes('settings')
|
||||
) {
|
||||
$log.debug('Message from server dropped: ' + e.data);
|
||||
needsRefreshAfterBlur = true;
|
||||
return;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user