From 041256a6e04d8c772c0eb8cdda3044443b8661d6 Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Fri, 22 Jun 2018 14:47:52 -0700 Subject: [PATCH] Removing return statement The SocketService.addStateResolve returns the resolve so you don't have to. --- awx/ui/client/features/output/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/client/features/output/index.js b/awx/ui/client/features/output/index.js index 7f8813a28b..266d1a8c11 100644 --- a/awx/ui/client/features/output/index.js +++ b/awx/ui/client/features/output/index.js @@ -144,7 +144,7 @@ function resolveWebSocketConnection ($stateParams, SocketService) { } }; - return SocketService.addStateResolve(state, id); + SocketService.addStateResolve(state, id); } function getWebSocketResource (type) {