mirror of
https://github.com/coder/coder.git
synced 2025-07-15 22:20:27 +00:00
chore: show yaml option in deployment page (#9912)
This commit is contained in:
@ -1033,6 +1033,7 @@ export interface DeploymentOption {
|
||||
readonly hidden: boolean;
|
||||
readonly group?: DeploymentGroup;
|
||||
readonly env?: string;
|
||||
readonly yaml?: string;
|
||||
}
|
||||
|
||||
export type DeploymentConfig = {
|
||||
|
@ -75,6 +75,12 @@ const OptionsTable: FC<{
|
||||
{option.env}
|
||||
</OptionConfig>
|
||||
)}
|
||||
{option.yaml && (
|
||||
<OptionConfig>
|
||||
<OptionConfigFlag>YAML</OptionConfigFlag>
|
||||
{option.yaml}
|
||||
</OptionConfig>
|
||||
)}
|
||||
</Box>
|
||||
</TableCell>
|
||||
|
||||
|
Reference in New Issue
Block a user