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 cd5893c commit 421e030Copy full SHA for 421e030
packages/feedback/src/widget/createWidget.ts
@@ -99,7 +99,7 @@ export function createWidget({
99
if (!feedback.message) {
100
emptyField.push(options.messageLabel);
101
}
102
- if (!emptyField.length) {
+ if (emptyField.length != 0) {
103
dialog.showError(`Please enter in the following required fields: ${emptyField.join(', ')}`);
104
return;
105
0 commit comments