Skip to content
Snippets Groups Projects
Commit 5e18b710 authored by Domonkos Gulyas's avatar Domonkos Gulyas
Browse files

CE-2184: Replace icon for inactive IOC

parent 8f48559d
No related branches found
No related tags found
2 merge requests!407CE-2141: 3.0.0,!396CE-2184: Replace icon for inactive IOC
Pipeline #163300 passed
......@@ -4,7 +4,7 @@ import {
Brightness1,
Cancel,
Error,
RadioButtonUnchecked,
StopCircle,
ErrorOutline,
HelpOutline,
PlayCircleFilled,
......@@ -57,7 +57,7 @@ export function IOCStatusIcon({ ioc }) {
},
inactive: {
title: "Inactive",
icon: <RadioButtonUnchecked title="Inactive" />
icon: <StopCircle title="Inactive" />
},
"inactive alert": {
title: "Alert",
......
......@@ -4,7 +4,7 @@ import {
Brightness1,
ErrorOutline,
Error,
RadioButtonUnchecked,
StopCircle,
HelpOutline
} from "@mui/icons-material";
......@@ -24,7 +24,7 @@ export function HostStatusIcon({ host }) {
},
inactive: {
title: "Inactive",
icon: <RadioButtonUnchecked />
icon: <StopCircle />
},
"inactive alert": {
title: "Alert",
......
import React from "react";
import { Tooltip, useTheme } from "@mui/material";
import {
Brightness1,
RadioButtonUnchecked,
HelpOutline
} from "@mui/icons-material";
import { Brightness1, StopCircle, HelpOutline } from "@mui/icons-material";
export function RecordStatusIcon({ record }) {
const theme = useTheme();
......@@ -18,7 +14,7 @@ export function RecordStatusIcon({ record }) {
},
inactive: {
title: "Inactive",
icon: <RadioButtonUnchecked />
icon: <StopCircle />
},
null: {
title: "Unknown",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment