From 379979511b29a3e35d1ae9aa80a6e614f99367c7 Mon Sep 17 00:00:00 2001 From: Haokun-Chen Date: Tue, 14 Aug 2018 11:45:10 -0400 Subject: [PATCH] fixed --- .../features/applications/add-applications.controller.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/ui/client/features/applications/add-applications.controller.js b/awx/ui/client/features/applications/add-applications.controller.js index f490ddcc82..9687db48b7 100644 --- a/awx/ui/client/features/applications/add-applications.controller.js +++ b/awx/ui/client/features/applications/add-applications.controller.js @@ -67,7 +67,7 @@ function AddApplicationsController (models, $state, strings, $scope, Alert, $fil ${strings.get('add.NAME_LABEL')}
- ${res.data.name} + ${$filter('sanitize')(res.data.name)}
` : ''; const clientId = res.data.client_id ? @@ -90,7 +90,7 @@ function AddApplicationsController (models, $state, strings, $scope, Alert, $fil ` : ''; Alert(strings.get('add.MODAL_HEADER'), ` - ${$filter('sanitize')(name)} + ${name} ${clientId} ${clientSecret} `, null, null, null, null, null, true);