Skip to content

Commit

Permalink
small fix, group all joinview columns together
Browse files Browse the repository at this point in the history
  • Loading branch information
frankyhollywood committed Dec 13, 2023
1 parent 5c61a04 commit db2cfeb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public List<ViewDTO> getViews() {
if (!j.include.contains(c.name)) {
continue;
}
columns.add(new ColumnDTO(joinView.name + "_" + c.name, c.title, c.type, c.displayIndex));
columns.add(new ColumnDTO(joinView.name + "_" + c.name, c.title, c.type, j.displayIndex));
}
}
return new ViewDTO(v.name, v.title, columns);
Expand Down

0 comments on commit db2cfeb

Please sign in to comment.