File tree 1 file changed +13
-0
lines changed
site/src/pages/HealthPage
1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import CloseIcon from "@mui/icons-material/Close";
4
4
import Person from "@mui/icons-material/Person" ;
5
5
import Sell from "@mui/icons-material/Sell" ;
6
6
import SwapHoriz from "@mui/icons-material/SwapHoriz" ;
7
+ import ViewInArIcon from "@mui/icons-material/ViewInAr" ;
7
8
import IconButton from "@mui/material/IconButton" ;
8
9
import Tooltip from "@mui/material/Tooltip" ;
9
10
import type { FC } from "react" ;
@@ -115,6 +116,18 @@ export const ProvisionerDaemonsPage: FC = () => {
115
116
gap : 12 ,
116
117
} }
117
118
>
119
+ {
120
+ // Add pills for the supported provisioenr types.
121
+ daemon . provisioners . map ( ( provType ) => {
122
+ return (
123
+ < Tooltip title = "Type" key = { daemon . id + provType } >
124
+ < Pill icon = { < ViewInArIcon /> } >
125
+ < code > { provType } </ code >
126
+ </ Pill >
127
+ </ Tooltip >
128
+ ) ;
129
+ } )
130
+ }
118
131
< Tooltip title = "API Version" >
119
132
< Pill icon = { < SwapHoriz /> } >
120
133
< code > { daemon . api_version } </ code >
You can’t perform that action at this time.
0 commit comments