commit 0d043e336f35bd302e0c0df5240d9391fb67ccb1 Author: Dhruv Srivastava Date: Mon Oct 5 11:04:29 2020 +0200 Update drafts in ReviewInput to be optional https://gerrit-review.googlesource.com/Documentation/rest-api-changes.html#review-input specifies drafts is optional. Change-Id: I1bd7700f9f66d1b2e19227afebfd1adc3d4b44e0 diff --git a/polygerrit-ui/app/types/common.ts b/polygerrit-ui/app/types/common.ts index 8b02ce9..ed920eb 100644 --- a/polygerrit-ui/app/types/common.ts +++ b/polygerrit-ui/app/types/common.ts @@ -1825,7 +1825,7 @@ export interface ReviewInput { labels?: LabelNameToValuesMap; comments?: PathToCommentsInputMap; robot_comments?: PathToRobotCommentsMap; - drafts: DraftsAction; + drafts?: DraftsAction; notify?: NotifyType; notify_details?: RecipientTypeToNotifyInfoMap; omit_duplicate_comments?: boolean;