From 147d301ff9c2169f559be512c55fe28798ea4e74 Mon Sep 17 00:00:00 2001 From: Marliana Lara Date: Thu, 19 Jul 2018 16:43:03 -0400 Subject: [PATCH] Change scm update icon from cloud-download to refresh --- awx/ui/client/src/shared/generator-helpers.js | 2 +- awx/ui/test/e2e/objects/sections/actions.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/ui/client/src/shared/generator-helpers.js b/awx/ui/client/src/shared/generator-helpers.js index de973cff2f..da9ede3e06 100644 --- a/awx/ui/client/src/shared/generator-helpers.js +++ b/awx/ui/client/src/shared/generator-helpers.js @@ -139,7 +139,7 @@ angular.module('GeneratorHelpers', [systemStatus.name]) icon = 'fa-refresh'; break; case 'scm_update': - icon = 'fa-cloud-download'; + icon = 'fa-refresh'; break; case 'run': case 'rerun': diff --git a/awx/ui/test/e2e/objects/sections/actions.js b/awx/ui/test/e2e/objects/sections/actions.js index afa182e9b0..805c2f4ee7 100644 --- a/awx/ui/test/e2e/objects/sections/actions.js +++ b/awx/ui/test/e2e/objects/sections/actions.js @@ -7,7 +7,7 @@ const actions = { edit: 'i[class="fa icon-pencil"]', delete: 'i[class="fa icon-trash-o"]', view: 'i[class="fa fa-search-plus"]', - sync: 'i[class="fa fa-cloud-download"]', + sync: 'i[class="fa fa-refresh"]', test: 'i[class="fa fa-bell-o' } };