Skip to content

Commit

Permalink
don't order absent versions, start date and due date to the end in bo…
Browse files Browse the repository at this point in the history
…th directions
  • Loading branch information
toy committed Oct 28, 2024
1 parent 223fd69 commit cb111e6
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions app/models/queries/work_packages/selects/property_select.rb
Original file line number Diff line number Diff line change
Expand Up @@ -97,17 +97,14 @@ def caption
association: "version",
sortable: "name",
default_order: "ASC",
null_handling: "NULLS LAST",
groupable: "#{WorkPackage.table_name}.version_id"
},
start_date: {
sortable: "#{WorkPackage.table_name}.start_date",
null_handling: "NULLS LAST"
sortable: "#{WorkPackage.table_name}.start_date"
},
due_date: {
highlightable: true,
sortable: "#{WorkPackage.table_name}.due_date",
null_handling: "NULLS LAST"
sortable: "#{WorkPackage.table_name}.due_date"
},
estimated_hours: {
sortable: "#{WorkPackage.table_name}.estimated_hours",
Expand Down

0 comments on commit cb111e6

Please sign in to comment.