diff --git a/awx/ui/static/js/lists/Projects.js b/awx/ui/static/js/lists/Projects.js index 8e4ad2808a..d34e812fae 100644 --- a/awx/ui/static/js/lists/Projects.js +++ b/awx/ui/static/js/lists/Projects.js @@ -94,12 +94,6 @@ angular.module('ProjectsListDefinition', []) ngClass: "project.scm_type_class", dataPlacement: 'top' }, - cancel: { - ngClick: "cancelUpdate(project.id, project.name)", - awToolTip: 'Cancel the SCM update', - ngShow: "project.status == 'updating'", - dataPlacement: 'top' - }, schedule: { mode: 'all', ngClick: "editSchedules(project.id)", @@ -117,6 +111,12 @@ angular.module('ProjectsListDefinition', []) awToolTip: 'Delete the project', ngShow: "project.status !== 'updating'", dataPlacement: 'top' + }, + cancel: { + ngClick: "cancelUpdate(project.id, project.name)", + awToolTip: 'Cancel the SCM update', + ngShow: "project.status == 'updating'", + dataPlacement: 'top' } } }); \ No newline at end of file