Remove tooltip update when job finishes. This will be handled later down the line by buildTooltips().

This commit is contained in:
mabashian 2020-02-26 11:30:49 -05:00 committed by Rebeccah
parent 48a615231b
commit d3fa34c665

View File

@ -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);
}