diff --git a/apps/blogai/components/header.tsx b/apps/blogai/components/header.tsx index ba53cb4..e142930 100644 --- a/apps/blogai/components/header.tsx +++ b/apps/blogai/components/header.tsx @@ -354,14 +354,17 @@ export function DetailPageHeader({ data }: { data: any }) { {/* 状态条 */} -
-
- {loading ? "操作中..." : statusText} + {(data?.progress !== "0%" || statusText) && ( +
+
+ {loading ? "操作中..." : statusText} +
-
+ )} +
);