Commit bc6fe0ce authored by Martin Wortschack's avatar Martin Wortschack

Replace fa-check icon in importer status

parent 70084dd3
...@@ -3,7 +3,7 @@ import { escape } from 'lodash'; ...@@ -3,7 +3,7 @@ import { escape } from 'lodash';
import { __, sprintf } from './locale'; import { __, sprintf } from './locale';
import axios from './lib/utils/axios_utils'; import axios from './lib/utils/axios_utils';
import { deprecatedCreateFlash as flash } from './flash'; import { deprecatedCreateFlash as flash } from './flash';
import { parseBoolean } from './lib/utils/common_utils'; import { parseBoolean, spriteIcon } from './lib/utils/common_utils';
class ImporterStatus { class ImporterStatus {
constructor({ jobsUrl, importUrl, ciCdOnly }) { constructor({ jobsUrl, importUrl, ciCdOnly }) {
...@@ -108,7 +108,7 @@ class ImporterStatus { ...@@ -108,7 +108,7 @@ class ImporterStatus {
switch (job.import_status) { switch (job.import_status) {
case 'finished': case 'finished':
jobItem.removeClass('table-active').addClass('table-success'); jobItem.removeClass('table-active').addClass('table-success');
statusField.html(`<span><i class="fa fa-check"></i> ${__('Done')}</span>`); statusField.html(`<span>${spriteIcon('check', 's16')} ${__('Done')}</span>`);
break; break;
case 'scheduled': case 'scheduled':
statusField.html(`${spinner} ${__('Scheduled')}`); statusField.html(`${spinner} ${__('Scheduled')}`);
......
...@@ -92,10 +92,6 @@ ...@@ -92,10 +92,6 @@
content: '\f0d7'; content: '\f0d7';
} }
.fa-check::before {
content: '\f00c';
}
.fa-warning::before, .fa-warning::before,
.fa-exclamation-triangle::before { .fa-exclamation-triangle::before {
content: '\f071'; content: '\f071';
......
---
title: Replace fa-check icon in importer status
merge_request: 47373
author:
type: changed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment