Fix: show mem / cpu stats for k8s partial health status (#2378)

This commit is contained in:
shamoon 2023-11-24 20:29:23 -08:00 committed by GitHub
父節點 6b35443100
當前提交 fb9ebf18ba
沒有發現已知的金鑰在資料庫的簽署中
GPG Key ID: 4AEE18F83AFDEB23

查看文件

@ -21,7 +21,7 @@ export default function Component({ service }) {
return <Container service={service} error={statsError ?? statusError} />;
}
if (statusData && statusData.status !== "running") {
if (statusData && !(statusData.status.includes("running") || statusData.status.includes("partial"))) {
return (
<Container>
<Block label={t("widget.status")} value={t("docker.offline")} />