Skip to content

feat: Add fallback troubleshooting URL for coder agents #5005

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Nov 16, 2022
Prev Previous commit
Lint
  • Loading branch information
mafredri committed Nov 14, 2022
commit 7e2898242f427601bf1bc2aaa45d589839c778d0
6 changes: 5 additions & 1 deletion site/src/components/Resources/AgentStatus.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,11 @@ const TimeoutStatus: React.FC<{
<HelpTooltipTitle>{t("timeoutTooltip.title")}</HelpTooltipTitle>
<HelpTooltipText>
{t("timeoutTooltip.message")}{" "}
<Link target="_blank" rel="noreferrer" href={agent.troubleshooting_url}>
<Link
target="_blank"
rel="noreferrer"
href={agent.troubleshooting_url}
>
{t("timeoutTooltip.link")}
</Link>
.
Expand Down