Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions site/src/api/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1033,6 +1033,7 @@ export interface DeploymentOption {
readonly hidden: boolean;
readonly group?: DeploymentGroup;
readonly env?: string;
readonly yaml?: string;
}

export type DeploymentConfig = {
Expand Down
6 changes: 6 additions & 0 deletions site/src/components/DeploySettingsLayout/OptionsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@ const OptionsTable: FC<{
{option.env}
</OptionConfig>
)}
{option.yaml && (
<OptionConfig>
<OptionConfigFlag>YAML</OptionConfigFlag>
{option.yaml}
</OptionConfig>
)}
</Box>
</TableCell>

Expand Down