From 34408a8ef9b5f39c7de88186270a00b1d038187d Mon Sep 17 00:00:00 2001 From: Marliana Lara Date: Thu, 3 May 2018 14:29:17 -0400 Subject: [PATCH] Fix undefined currentSystem form error --- awx/ui/client/src/configuration/configuration.controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/client/src/configuration/configuration.controller.js b/awx/ui/client/src/configuration/configuration.controller.js index db0696ddaf..0f65097f71 100644 --- a/awx/ui/client/src/configuration/configuration.controller.js +++ b/awx/ui/client/src/configuration/configuration.controller.js @@ -278,7 +278,7 @@ export default [ if (setForm === 'auth') { formTracker.setCurrentAuth(formTracker.currentAuth); } else if (setForm === 'system') { - formTracker.setCurrentSystem(formTracker.currenSystem); + formTracker.setCurrentSystem(formTracker.currentSystem); } else { formTracker.setCurrent(setForm); }