Skip to content
Snippets Groups Projects

CE-3061: Update ioc alerts and status separately

Merged Johanna Szepanski requested to merge CE-3061-update-IOC-alerts-async into develop
7 files
+ 94
104
Compare changes
  • Side-by-side
  • Inline
Files
7
import { IconBadge } from "@ess-ics/ce-ui-common";
import { IOCStatusIcon } from "../IOCIcons";
export function IOCBadge({ ioc, ...rest }) {
return (
<IconBadge
icon={
<IOCStatusIcon
ioc={ioc}
hideAlerts
/>
}
title={ioc.namingName ?? ioc.name}
subtitle={ioc.activeDeployment?.host?.fqdn || "---"}
{...rest}
/>
);
}
Loading