Skip to content

Commit

Permalink
feat(console): Support ASCII-only mode
Browse files Browse the repository at this point in the history
  • Loading branch information
nrskt committed Mar 4, 2022
1 parent 4bc45d6 commit c29d6c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tokio-console/src/view/tasks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,9 @@ impl TableList for TasksTable {
let header = Row::new(Self::HEADER.iter().enumerate().map(|(idx, &value)| {
if idx == table_list_state.selected_column {
let suffix = if table_list_state.sort_descending {
"▵"
styles.if_utf8("▵", "+")
} else {
"▿"
styles.if_utf8("▿", "-")
};
Cell::from(format!("{}{}", value, suffix)).style(selected_style)
} else {
Expand Down

0 comments on commit c29d6c9

Please sign in to comment.