File tree Expand file tree Collapse file tree
python/ray/dashboard/client/src/pages/node Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -248,7 +248,20 @@ export const WorkerRow = ({ node, worker }: WorkerRowProps) => {
248248 < TableCell >
249249 { /* Empty because workers do not have an expand / unexpand button. */ }
250250 </ TableCell >
251- < TableCell align = "center" > { cmdline [ 0 ] } </ TableCell >
251+ < TableCell align = "center" >
252+ < Link
253+ component = { RouterLink }
254+ to = {
255+ coreWorker ?. actorId &&
256+ coreWorker . actorId !== "ffffffffffffffffffffffffffffffffffffffff" &&
257+ coreWorker . actorId !== "ffffffffffffffffffffffffffffffff"
258+ ? `/actors/${ coreWorker . actorId } `
259+ : `/cluster/nodes/${ nodeId } `
260+ }
261+ >
262+ { cmdline ?. [ 0 ] || "Unknown Worker" }
263+ </ Link >
264+ </ TableCell >
252265 < TableCell >
253266 < StatusChip type = "worker" status = "ALIVE" />
254267 </ TableCell >
You can’t perform that action at this time.
0 commit comments