mirror of
https://github.com/nushell/nushell
synced 2024-12-27 21:43:09 +00:00
fix bug where thin
theme wasn't getting applied correctly (#5905)
This commit is contained in:
parent
8c9dced71b
commit
7aabc381a3
1 changed files with 3 additions and 2 deletions
|
@ -569,10 +569,11 @@ impl Iterator for PagingTableCreator {
|
|||
fn load_theme_from_config(config: &Config) -> TableTheme {
|
||||
match config.table_mode.as_str() {
|
||||
"basic" => nu_table::TableTheme::basic(),
|
||||
"compact" => nu_table::TableTheme::compact(),
|
||||
"compact_double" => nu_table::TableTheme::compact_double(),
|
||||
"thin" => nu_table::TableTheme::thin(),
|
||||
"light" => nu_table::TableTheme::light(),
|
||||
"compact" => nu_table::TableTheme::compact(),
|
||||
"with_love" => nu_table::TableTheme::with_love(),
|
||||
"compact_double" => nu_table::TableTheme::compact_double(),
|
||||
"rounded" => nu_table::TableTheme::rounded(),
|
||||
"reinforced" => nu_table::TableTheme::reinforced(),
|
||||
"heavy" => nu_table::TableTheme::heavy(),
|
||||
|
|
Loading…
Reference in a new issue