Skip to content

Commit

Permalink
restore the number of runs being displayed
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Mar 17, 2024
1 parent 353025b commit d696912
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ fn main() {
folders.sort();
folders.reverse();

for (i, run_path) in folders.iter().take(15).enumerate() {
for (i, run_path) in folders.iter().take(30).enumerate() {
let file_name = run_path.file_name().unwrap().to_str().unwrap();
if file_name.starts_with(".") {
continue;
Expand Down

0 comments on commit d696912

Please sign in to comment.