Merge pull request #2621 from marshmalien/fix/2619-scm-icon

Change scm update icon to fa-refresh
This commit is contained in:
Marliana Lara 2018-07-20 09:36:08 -04:00 committed by GitHub
commit 831e79ff17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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':

View File

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