pxengine 0.1.87 → 0.1.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/registry.json +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -39386,7 +39386,7 @@ var ResearchReportJobCard = (props) => {
|
|
|
39386
39386
|
if (count >= 1e3) return `${(count / 1e3).toFixed(1)}k`;
|
|
39387
39387
|
return count.toString();
|
|
39388
39388
|
};
|
|
39389
|
-
if (status === "pending" || status === "running") {
|
|
39389
|
+
if (!status || status === "pending" || status === "running") {
|
|
39390
39390
|
return /* @__PURE__ */ jsx148("div", { className: cn("w-full", className), children: /* @__PURE__ */ jsxs109("div", { className: "relative overflow-hidden rounded-2xl border border-zinc-200/70 dark:border-zinc-800 bg-zinc-100 dark:bg-zinc-900", children: [
|
|
39391
39391
|
/* @__PURE__ */ jsx148("div", { className: "h-[3px] bg-gradient-to-r from-zinc-300 dark:from-zinc-700 via-zinc-200 dark:via-zinc-600 to-zinc-300 dark:to-zinc-700 animate-pulse" }),
|
|
39392
39392
|
/* @__PURE__ */ jsxs109("div", { className: "p-5", children: [
|