Skip to content

Commit

Permalink
2
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Sikina committed Jul 8, 2024
1 parent dec0c81 commit 7f4cb7f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class ColumnSorter {
private final Map<String, Integer> infoColumnsOrder;

@Autowired
public ColumnSorter(@Value("#{${variant.info_column_order:}}") List<String> infoColumnOrder) {
public ColumnSorter(@Value("#{'${variant.info_column_order:}'.split(',')}") List<String> infoColumnOrder) {
HashMap<String, Integer> order = new HashMap<>();
for (int i = 0; i < infoColumnOrder.size(); i++) {
order.put(infoColumnOrder.get(i), i);
Expand Down

0 comments on commit 7f4cb7f

Please sign in to comment.