We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b9d189 commit baa3baaCopy full SHA for baa3baa
webviews/common/createContextNew.ts
@@ -172,9 +172,10 @@ export class CreatePRContextNew {
172
command: 'pr.generateTitleAndDescription',
173
args
174
});
175
- const updateValues: { pendingTitle?: string, pendingDescription?: string } = {};
+ const updateValues: { pendingTitle?: string, pendingDescription?: string, showTitleValidationError?: boolean } = {};
176
if (response.title) {
177
updateValues.pendingTitle = response.title;
178
+ updateValues.showTitleValidationError = false;
179
}
180
if (response.description) {
181
updateValues.pendingDescription = response.description;
0 commit comments