Skip to content

Commit f967df7

Browse files
committed
fix: typo in process detail title
1 parent 3dbdab2 commit f967df7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/components/process_details.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,11 @@ pub fn process_details(state: &mut State) -> List {
8181
});
8282

8383
let items: Vec<ListItem> = spans.map(|span| ListItem::new(span)).collect();
84-
let component = List::new(items).block(Block::default().borders(Borders::ALL).title("List"));
84+
let component = List::new(items).block(
85+
Block::default()
86+
.borders(Borders::ALL)
87+
.title("Process Details"),
88+
);
8589

8690
return component;
8791
}

0 commit comments

Comments
 (0)