Skip to content

Commit

Permalink
fix(console): fix ViewOptions default lang' (#394)
Browse files Browse the repository at this point in the history
Fixes #393
  • Loading branch information
ymgyt authored and hawkw committed Sep 29, 2023
1 parent 5b7e00a commit a1cf1b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tokio-console/src/config.rs
Expand Up @@ -498,7 +498,7 @@ impl Default for ViewOptions {
fn default() -> Self {
Self {
no_colors: false,
lang: Some("en_us.UTF8".to_string()),
lang: Some("en_us.UTF-8".to_string()),
ascii_only: Some(false),
truecolor: Some(true),
palette: Some(Palette::All),
Expand Down

0 comments on commit a1cf1b8

Please sign in to comment.