From d3fa34c665518cc6a3310d98f7f3c95a1f55c46a Mon Sep 17 00:00:00 2001 From: mabashian Date: Wed, 26 Feb 2020 11:30:49 -0500 Subject: [PATCH] Remove tooltip update when job finishes. This will be handled later down the line by buildTooltips(). --- awx/ui/client/features/projects/projectsList.controller.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/awx/ui/client/features/projects/projectsList.controller.js b/awx/ui/client/features/projects/projectsList.controller.js index 1997361c4d..df06920f60 100644 --- a/awx/ui/client/features/projects/projectsList.controller.js +++ b/awx/ui/client/features/projects/projectsList.controller.js @@ -113,9 +113,6 @@ function projectsListController ( // And we found the affected project $log.debug(`Received event for project: ${project.name}`); $log.debug(`Status changed to: ${data.status}`); - if (!(data.status === 'successful' || data.status === 'failed' || data.status === 'canceled')) { - project.scm_update_tooltip = vm.strings.get('update.UPDATE_RUNNING'); - } project.status = data.status; buildTooltips(project); }