Skip to content

Commit

Permalink
Fix comparisons order
Browse files Browse the repository at this point in the history
  • Loading branch information
ylavoie committed Jun 6, 2024
1 parent 1e7a7e6 commit da5647f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/LedgerSMB/Report/Dates.pm
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ sub _collect_dates_comparisons {
push @dates, {
from_date => LedgerSMB::PGDate->from_input($args{"from_date_$i"},$args{formatter_options}),
to_date => LedgerSMB::PGDate->from_input($args{"to_date_$i"},$args{formatter_options}),
column_path_prefix => [ $i ]
column_path_prefix => [ sprintf('%02u', $i) ]
};
}

Expand Down

0 comments on commit da5647f

Please sign in to comment.