Skip to content

Commit 48a7030

Browse files
fix(UI): Add missing icon colors to auto-sync (#23962)
Signed-off-by: Surajyadav <[email protected]>
1 parent 38ad19f commit 48a7030

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ui/src/app/applications/components/applications-list/applications-filter.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import {Filter, FiltersGroup} from '../filter/filter';
88
import * as LabelSelector from '../label-selector';
99
import {ComparisonStatusIcon, getAppDefaultSource, HealthStatusIcon} from '../utils';
1010
import {formatClusterQueryParam} from '../../../shared/utils';
11+
import {COLORS} from '../../../shared/components/colors';
1112

1213
export interface FilterResult {
1314
repos: boolean;
@@ -253,12 +254,12 @@ function getAutoSyncOptions(apps: FilteredApp[]) {
253254
return [
254255
{
255256
label: 'Enabled',
256-
icon: <i className='fa fa-circle-play' />,
257+
icon: <i className='fa fa-circle-play' style={{color: COLORS.sync.synced}} />,
257258
count: counts.get('Enabled')
258259
},
259260
{
260261
label: 'Disabled',
261-
icon: <i className='fa fa-ban' />,
262+
icon: <i className='fa fa-ban' style={{color: COLORS.sync.out_of_sync}} />,
262263
count: counts.get('Disabled')
263264
}
264265
];

0 commit comments

Comments
 (0)