Skip to content

Commit

Permalink
do not recommend version in the suggestions (#216718)
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 authored Jun 20, 2024
1 parent b03fd7c commit d7792c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ export const schema: IJSONSchema = {
uniqueItems: true,
items: {
type: 'string',
enum: Object.keys(allApiProposals).map(proposalName => allApiProposals[proposalName].version ? `${proposalName}@${allApiProposals[proposalName].version}` : proposalName),
enum: Object.keys(allApiProposals).map(proposalName => proposalName),
markdownEnumDescriptions: Object.values(allApiProposals).map(value => value.proposal)
}
},
Expand Down

0 comments on commit d7792c1

Please sign in to comment.