Skip to content

Commit a1cf1b8

Browse files
ymgythawkw
authored andcommittedSep 29, 2023
fix(console): fix ViewOptions default lang' (#394)
Fixes #393
1 parent 5b7e00a commit a1cf1b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎tokio-console/src/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ impl Default for ViewOptions {
498498
fn default() -> Self {
499499
Self {
500500
no_colors: false,
501-
lang: Some("en_us.UTF8".to_string()),
501+
lang: Some("en_us.UTF-8".to_string()),
502502
ascii_only: Some(false),
503503
truecolor: Some(true),
504504
palette: Some(Palette::All),

0 commit comments

Comments
 (0)
Please sign in to comment.