Disallow sending empty feedbacks (#7240)

This commit is contained in:
Michael Telatynski 2021-12-01 10:59:46 +00:00 committed by GitHub
parent 4511c47b1c
commit 2046991848
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -174,7 +174,7 @@ const FeedbackDialog: React.FC<IProps> = (props: IProps) => {
{ feedbackSection }
</React.Fragment>}
button={hasFeedback ? _t("Send feedback") : _t("Go back")}
buttonDisabled={hasFeedback && !rageshakeUrl && !rating}
buttonDisabled={hasFeedback && !rating && !comment}
onFinished={onFinished}
/>);
};