Skip to content

Commit

Permalink
Show job id column when completed.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaander committed May 9, 2024
1 parent 3c10db0 commit 22dcedc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli/directories.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ pub fn directories<W: Write>(
Item::new("Directory".to_string(), Style::new().underlined()),
Item::new("Status".to_string(), Style::new().underlined()),
];
if show_submitted {
if show_submitted || show_completed {
table
.header
.push(Item::new("Job ID".to_string(), Style::new().underlined()));
Expand Down Expand Up @@ -165,7 +165,7 @@ pub fn directories<W: Write>(
row.push(status);

// Job ID
if show_submitted {
if show_submitted || show_completed {
let submitted = project.state().submitted();

// Values
Expand Down

0 comments on commit 22dcedc

Please sign in to comment.