Skip to content

Commit

Permalink
fix(web): liveman webui api url
Browse files Browse the repository at this point in the history
  • Loading branch information
a-wing committed Dec 22, 2024
1 parent 8717800 commit ec12c83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/liveman/components/nodes-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export function NodesTable() {
<span>{n.status}</span>
<span>{n.duration}</span>
<NodeStrategyLabel strategy={n.strategy} />
<Link href={n.url} target="_blank">{n.url}</Link>
<Link href={location.href + '?nodes=' + n.alias} target="_blank">{location.href + '?nodes=' + n.alias}</Link>
</Table.Row>
) : <tr><td colspan={5} className="text-center">N/A</td></tr>}
</Table.Body>
Expand Down

0 comments on commit ec12c83

Please # to comment.