Skip to content

feat!: drop LegacyVariableName from coder parameter #8360

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jul 7, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
cleanup
  • Loading branch information
mtojek committed Jul 7, 2023
commit a77ffe34ea514c26ac5678895f66f3bf0391e5bd
4 changes: 0 additions & 4 deletions site/e2e/provisionerGenerated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ export interface RichParameter {
validationMax?: number | undefined
validationMonotonic: string
required: boolean
legacyVariableName: string
displayName: string
}

Expand Down Expand Up @@ -354,9 +353,6 @@ export const RichParameter = {
if (message.required === true) {
writer.uint32(104).bool(message.required)
}
if (message.legacyVariableName !== "") {
writer.uint32(114).string(message.legacyVariableName)
}
if (message.displayName !== "") {
writer.uint32(122).string(message.displayName)
}
Expand Down