diff --git a/frontend/src/Helpers/Props/icons.js b/frontend/src/Helpers/Props/icons.js index 499ba4a87..82f99ec90 100644 --- a/frontend/src/Helpers/Props/icons.js +++ b/frontend/src/Helpers/Props/icons.js @@ -70,6 +70,7 @@ import { faLanguage as fasLanguage, faLaptop as fasLaptop, faLevelUpAlt as fasLevelUpAlt, + faLocationArrow as fasLocationArrow, faLock as fasLock, faMedkit as fasMedkit, faMinus as fasMinus, @@ -191,6 +192,7 @@ export const POSTER = fasTh; export const QUEUED = fasCloud; export const QUICK = fasRocket; export const RECOMMENDED = fasThumbsUp; +export const REDIRECT = fasLocationArrow; export const REFRESH = fasSync; export const REMOVE = fasTimes; export const RESTART = fasRedoAlt; diff --git a/frontend/src/Indexer/Index/Table/IndexerStatusCell.js b/frontend/src/Indexer/Index/Table/IndexerStatusCell.js index 88312457f..017c7a47f 100644 --- a/frontend/src/Indexer/Index/Table/IndexerStatusCell.js +++ b/frontend/src/Indexer/Index/Table/IndexerStatusCell.js @@ -19,6 +19,7 @@ function IndexerStatusCell(props) { } = props; const enableKind = redirect ? kinds.INFO : kinds.SUCCESS; + const enableIcon = redirect ? icons.REDIRECT : icons.CHECK; const enableTitle = redirect ? 'Indexer is Enabled, Redirect is Enabled' : 'Indexer is Enabled'; return ( @@ -30,7 +31,7 @@ function IndexerStatusCell(props) { }