We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 395632c commit d39a808Copy full SHA for d39a808
1 file changed
python/ray/dashboard/client/src/pages/node/NodeRow.tsx
@@ -248,7 +248,19 @@ export const WorkerRow = ({ node, worker }: WorkerRowProps) => {
248
<TableCell>
249
{/* Empty because workers do not have an expand / unexpand button. */}
250
</TableCell>
251
- <TableCell align="center">{cmdline[0]}</TableCell>
+ <TableCell align="center">
252
+ <Link
253
+ component={RouterLink}
254
+ to={
255
+ coreWorker?.actorId &&
256
+ coreWorker.actorId !== "ffffffffffffffffffffffffffffffff"
257
+ ? `/actors/${coreWorker.actorId}`
258
+ : `/cluster/nodes/${nodeId}`
259
+ }
260
+ >
261
+ {cmdline?.[0] || "Unknown Worker"}
262
+ </Link>
263
+ </TableCell>
264
265
<StatusChip type="worker" status="ALIVE" />
266
0 commit comments