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 { ...@@ -4,7 +4,7 @@ import {
Brightness1, Brightness1,
Cancel, Cancel,
Error, Error,
RadioButtonUnchecked, StopCircle,
ErrorOutline, ErrorOutline,
HelpOutline, HelpOutline,
PlayCircleFilled, PlayCircleFilled,
...@@ -57,7 +57,7 @@ export function IOCStatusIcon({ ioc }) { ...@@ -57,7 +57,7 @@ export function IOCStatusIcon({ ioc }) {
}, },
inactive: { inactive: {
title: "Inactive", title: "Inactive",
icon: <RadioButtonUnchecked title="Inactive" /> icon: <StopCircle title="Inactive" />
}, },
"inactive alert": { "inactive alert": {
title: "Alert", title: "Alert",
......
...@@ -4,7 +4,7 @@ import { ...@@ -4,7 +4,7 @@ import {
Brightness1, Brightness1,
ErrorOutline, ErrorOutline,
Error, Error,
RadioButtonUnchecked, StopCircle,
HelpOutline HelpOutline
} from "@mui/icons-material"; } from "@mui/icons-material";
...@@ -24,7 +24,7 @@ export function HostStatusIcon({ host }) { ...@@ -24,7 +24,7 @@ export function HostStatusIcon({ host }) {
}, },
inactive: { inactive: {
title: "Inactive", title: "Inactive",
icon: <RadioButtonUnchecked /> icon: <StopCircle />
}, },
"inactive alert": { "inactive alert": {
title: "Alert", title: "Alert",
......
import React from "react"; import React from "react";
import { Tooltip, useTheme } from "@mui/material"; import { Tooltip, useTheme } from "@mui/material";
import { import { Brightness1, StopCircle, HelpOutline } from "@mui/icons-material";
Brightness1,
RadioButtonUnchecked,
HelpOutline
} from "@mui/icons-material";
export function RecordStatusIcon({ record }) { export function RecordStatusIcon({ record }) {
const theme = useTheme(); const theme = useTheme();
...@@ -18,7 +14,7 @@ export function RecordStatusIcon({ record }) { ...@@ -18,7 +14,7 @@ export function RecordStatusIcon({ record }) {
}, },
inactive: { inactive: {
title: "Inactive", title: "Inactive",
icon: <RadioButtonUnchecked /> icon: <StopCircle />
}, },
null: { null: {
title: "Unknown", 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