Skip to content

Commit

Permalink
fix:QBD direct advanced settings fix (#1133)
Browse files Browse the repository at this point in the history
  • Loading branch information
DhaaraniCIT authored Dec 19, 2024
1 parent 97ff48f commit a7b8b20
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export class QbdDirectAdvancedSettingsComponent implements OnInit {
return;
}
let valueField = this.skipExportForm.getRawValue();
if (!valueField.condition1.field_name) {
if (!valueField.condition1.field_name || !valueField.value1) {
return;
}
valueField = SkipExportModel.constructSkipExportValue(valueField);
Expand Down

0 comments on commit a7b8b20

Please sign in to comment.