chore: show yaml option in deployment page (#9912)

This commit is contained in:
Steven Masley
2023-09-28 15:10:06 -05:00
committed by GitHub
parent 92c0237899
commit 8cff6237ba
2 changed files with 7 additions and 0 deletions

View File

@ -1033,6 +1033,7 @@ export interface DeploymentOption {
readonly hidden: boolean;
readonly group?: DeploymentGroup;
readonly env?: string;
readonly yaml?: string;
}
export type DeploymentConfig = {

View File

@ -75,6 +75,12 @@ const OptionsTable: FC<{
{option.env}
</OptionConfig>
)}
{option.yaml && (
<OptionConfig>
<OptionConfigFlag>YAML</OptionConfigFlag>
{option.yaml}
</OptionConfig>
)}
</Box>
</TableCell>