Skip to content

Commit 4b28359

Browse files
committed
fix comment
1 parent 6d0c615 commit 4b28359

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

site/src/pages/TemplateVersionEditorPage/ProvisionerTagsPopover.tsx

+15-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ import TextField from "@mui/material/TextField";
1616
import Button from "@mui/material/Button";
1717
import ExpandMoreOutlined from "@mui/icons-material/ExpandMoreOutlined";
1818
import AddIcon from "@mui/icons-material/Add";
19+
import Link from "@mui/material/Link";
20+
import { docs } from "utils/docs";
1921

2022
const initialValues = {
2123
key: "",
@@ -88,7 +90,19 @@ export const ProvisionerTagsPopover: FC<ProvisionerTagsPopoverProps> = ({
8890
<Stack>
8991
<FormSection
9092
title="Provisioner Tags"
91-
description="Tags are a way to control which provisoner daemons process which build jobs. To learn more read the docs. "
93+
description={
94+
<>
95+
Tags are a way to control which provisioner daemons complete
96+
which build jobs.&nbsp;
97+
<Link
98+
href={docs("/admin/provisioners")}
99+
target="_blank"
100+
rel="noreferrer"
101+
>
102+
Learn more...
103+
</Link>
104+
</>
105+
}
92106
/>
93107
<Stack direction="row" spacing={1} wrap="wrap">
94108
{Object.keys(tags)

0 commit comments

Comments
 (0)