We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fd4f6e commit 93660f7Copy full SHA for 93660f7
src/browser/components/pr-review.tsx
@@ -2839,7 +2839,7 @@ const SubmitReviewDropdown = memo(function SubmitReviewDropdown() {
2839
e.stopPropagation();
2840
handleSubmit();
2841
}}
2842
- disabled={submitting || (pendingCount === 0 && !reviewBody.trim())}
+ disabled={submitting || (reviewType === "COMMENT" && pendingCount === 0 && !reviewBody.trim())}
2843
className={cn(
2844
"flex items-center gap-1.5 px-2 py-1 text-xs font-medium rounded-md transition-colors disabled:opacity-50",
2845
reviewType === "APPROVE" &&
0 commit comments