diff --git a/ui/src/components/alerts/details.tsx b/ui/src/components/alerts/details.tsx index a99487ea1..a08dfdc91 100644 --- a/ui/src/components/alerts/details.tsx +++ b/ui/src/components/alerts/details.tsx @@ -98,7 +98,7 @@ export function AlertDetailsContent({ {/** HEADER */} {fmtUpperCamelcase(alert.data.type)} - + diff --git a/ui/src/components/docker/container-selector.tsx b/ui/src/components/docker/container-selector.tsx index 44e63bf87..3634ce61b 100644 --- a/ui/src/components/docker/container-selector.tsx +++ b/ui/src/components/docker/container-selector.tsx @@ -86,8 +86,8 @@ export default function ContainerSelector({ {clearable && ( { e.stopPropagation(); onSelect?.(""); diff --git a/ui/src/components/docker/link.tsx b/ui/src/components/docker/link.tsx index a43752c28..14449a58f 100644 --- a/ui/src/components/docker/link.tsx +++ b/ui/src/components/docker/link.tsx @@ -82,7 +82,7 @@ export const DOCKER_LINK_ICONS: { : noContainers ? ["none", "host", "bridge"].includes(name) ? "None" - : "Critical" + : "Neutral" : "Good"; return ; }, @@ -92,7 +92,7 @@ export const DOCKER_LINK_ICONS: { const noContainers = !name ? false : containers.every((container) => container.image_id !== name); - const intention = !name ? "Warning" : noContainers ? "Critical" : "Good"; + const intention = !name ? "Warning" : noContainers ? "Neutral" : "Good"; return ; }, Volume: ({ serverId, name, size = "1rem" }) => { @@ -101,7 +101,7 @@ export const DOCKER_LINK_ICONS: { const noContainers = !name ? false : containers.every((container) => !container.volumes?.includes(name)); - const intention = !name ? "Warning" : noContainers ? "Critical" : "Good"; + const intention = !name ? "Warning" : noContainers ? "Neutral" : "Good"; return ; }, }; diff --git a/ui/src/components/log-section.tsx b/ui/src/components/log-section.tsx index 07943e6ac..2698fb38a 100644 --- a/ui/src/components/log-section.tsx +++ b/ui/src/components/log-section.tsx @@ -135,8 +135,8 @@ export function LogSectionInner({ {terms.map((term, index) => (