mirror of
https://github.com/ansible/awx.git
synced 2026-02-25 23:16:01 -03:30
Don't refresh settings on websocket event
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user