Skip to content

Commit ddbfe3b

Browse files
committed
fix: minor though still hacky improvements to the Run Status text
1 parent fa226e7 commit ddbfe3b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plugins/plugin-codeflare/src/controller/description.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ async function app(args: Arguments) {
5252
const { RAY_IMAGE } = jobInfo.runtimeEnv.env_vars
5353

5454
const summaryData = [
55-
{ label: "Application Class", value: "Unknown" },
56-
{ label: "Application Name", value: "Unknown" },
55+
{ label: "Application Class", value: "Unknown" }, // TODO...
56+
{ label: "Application Name", value: "Unknown" }, // TODO...
5757
{ label: "Base Image", value: RAY_IMAGE },
58-
{ label: "Run Status", value: "Unknown" },
58+
{ label: "Run Status", value: process.env.FOLLOW ? "Running" : "Done" }, // TODO...
5959
]
6060

6161
const React = await import("react")

0 commit comments

Comments
 (0)