Skip to content

Commit c90e910

Browse files
committed
fix: start code index at one as done in dashboard and in edit subcommand
1 parent d35a94b commit c90e910

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/arguments/list.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ impl SubcommandExecutor for ListArgs {
8080
.for_each(|(index, e)| {
8181
println!(
8282
"{0: <6} {1: <30} {2: <70} {3: <10}",
83-
index,
83+
index + 1,
8484
if e.issuer.is_empty() {
8585
"<No issuer>"
8686
} else {

0 commit comments

Comments
 (0)