Skip to content

Commit

Permalink
Fix error in mapping generator
Browse files Browse the repository at this point in the history
The error occured when you try to add an "Include names" filter
  • Loading branch information
crazycat256 committed Jan 8, 2025
1 parent d5db816 commit f2dcd3f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ protected void fillConfigurator(@Nonnull BiConsumer<StringBinding, Node> sink) {
grid.addRow(2, new BoundLabel(Lang.getBinding("mapgen.filter.method-name")),
txtMethod, new BoundComboBox<>(methodPredicateId, stringPredicatesWithNull, textPredicateConverter));
grid.addRow(3, new BoundLabel(Lang.getBinding("mapgen.filter.variable-name")),
txtMethod, new BoundComboBox<>(variablePredicateId, stringPredicatesWithNull, textPredicateConverter));
txtVariable, new BoundComboBox<>(variablePredicateId, stringPredicatesWithNull, textPredicateConverter));
sink.accept(null, grid);
}
}
Expand Down

0 comments on commit f2dcd3f

Please sign in to comment.