From 83f9681941eba2a02150d35e94be9de021097f5d Mon Sep 17 00:00:00 2001 From: mabashian Date: Mon, 15 Jul 2019 16:17:48 -0400 Subject: [PATCH] Fix jshint errors --- .../workflows/workflow-maker/workflow-maker.controller.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/ui/client/src/templates/workflows/workflow-maker/workflow-maker.controller.js b/awx/ui/client/src/templates/workflows/workflow-maker/workflow-maker.controller.js index 53cd0076a9..72a74a5b8a 100644 --- a/awx/ui/client/src/templates/workflows/workflow-maker/workflow-maker.controller.js +++ b/awx/ui/client/src/templates/workflows/workflow-maker/workflow-maker.controller.js @@ -585,8 +585,8 @@ export default ['$scope', 'TemplatesService', $scope.confirmNodeForm = (nodeFormData) => { const { edgeType, selectedTemplate, promptData } = nodeFormData; - const isPauseNode = selectedTemplate.type === "workflow_approval" - || selectedTemplate.unified_job_type === "workflow_approval"; + const isPauseNode = selectedTemplate.type === "workflow_approval" || + selectedTemplate.unified_job_type === "workflow_approval"; // edgeType, selectedTemplate, promptData // can determine pause node by looking at the type (?) or maybe unified_job_type $scope.workflowChangesUnsaved = true;