We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa226e7 commit ddbfe3bCopy full SHA for ddbfe3b
plugins/plugin-codeflare/src/controller/description.ts
@@ -52,10 +52,10 @@ async function app(args: Arguments) {
52
const { RAY_IMAGE } = jobInfo.runtimeEnv.env_vars
53
54
const summaryData = [
55
- { label: "Application Class", value: "Unknown" },
56
- { label: "Application Name", value: "Unknown" },
+ { label: "Application Class", value: "Unknown" }, // TODO...
+ { label: "Application Name", value: "Unknown" }, // TODO...
57
{ label: "Base Image", value: RAY_IMAGE },
58
- { label: "Run Status", value: "Unknown" },
+ { label: "Run Status", value: process.env.FOLLOW ? "Running" : "Done" }, // TODO...
59
]
60
61
const React = await import("react")
0 commit comments