From 504e6aad1eb62d49324984da279f19157b6ede69 Mon Sep 17 00:00:00 2001 From: harrisonliu5 Date: Fri, 20 Oct 2023 15:48:43 +0800 Subject: [PATCH] fix: Fix the status of schedule in pod schedule page Signed-off-by: harrisonliu5 --- .../projects/containers/Pods/Detail/ScheduleInfo/index.jsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/pages/projects/containers/Pods/Detail/ScheduleInfo/index.jsx b/src/pages/projects/containers/Pods/Detail/ScheduleInfo/index.jsx index 8731680b7c5..8b09c45cb07 100644 --- a/src/pages/projects/containers/Pods/Detail/ScheduleInfo/index.jsx +++ b/src/pages/projects/containers/Pods/Detail/ScheduleInfo/index.jsx @@ -242,17 +242,18 @@ class ScheduleInfo extends React.Component { renderPodStatus() { const { detail } = this.store const conditions = get(detail, 'status.conditions', []) - const phase = get(detail, 'status.phase', '') + const status = get(detail, 'podStatus.status', '') + return (
+ } />