Skip to content

Commit

Permalink
fix: correct headers on mise ls
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Dec 14, 2024
1 parent 7a3b414 commit 5af3b17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/ls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ impl Ls {
},
})
.collect::<Vec<_>>();
let mut table = MiseTable::new(self.no_header, &["Path", "Tools"]);
let mut table = MiseTable::new(self.no_header, &["Tool", "Version", "Source", "Requested"]);
for r in rows {
let row = vec![
r.display_tool(),
Expand Down

0 comments on commit 5af3b17

Please sign in to comment.