File tree 1 file changed +15
-1
lines changed
site/src/pages/TemplateVersionEditorPage
1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ import TextField from "@mui/material/TextField";
16
16
import Button from "@mui/material/Button" ;
17
17
import ExpandMoreOutlined from "@mui/icons-material/ExpandMoreOutlined" ;
18
18
import AddIcon from "@mui/icons-material/Add" ;
19
+ import Link from "@mui/material/Link" ;
20
+ import { docs } from "utils/docs" ;
19
21
20
22
const initialValues = {
21
23
key : "" ,
@@ -88,7 +90,19 @@ export const ProvisionerTagsPopover: FC<ProvisionerTagsPopoverProps> = ({
88
90
< Stack >
89
91
< FormSection
90
92
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.
97
+ < Link
98
+ href = { docs ( "/admin/provisioners" ) }
99
+ target = "_blank"
100
+ rel = "noreferrer"
101
+ >
102
+ Learn more...
103
+ </ Link >
104
+ </ >
105
+ }
92
106
/>
93
107
< Stack direction = "row" spacing = { 1 } wrap = "wrap" >
94
108
{ Object . keys ( tags )
You can’t perform that action at this time.
0 commit comments