diff --git a/src/modes/status.rs b/src/modes/status.rs index 30ac8c4..a063c81 100644 --- a/src/modes/status.rs +++ b/src/modes/status.rs @@ -168,7 +168,10 @@ fn build_meta_plugin_table(enabled_meta_plugins: &Vec) -> Table true => Cell::new("Yes").with_style(Attr::ForegroundColor(color::GREEN)), false => Cell::new("No"), }, - Cell::new(&binary_display).with_style(Attr::ForegroundColor(color::BRIGHT_BLACK)), + match binary_display.as_str() { + "" => Cell::new(&binary_display).with_style(Attr::ForegroundColor(color::BRIGHT_BLACK)), + _ => Cell::new(&binary_display), + }, Cell::new(&args_display), Cell::new(&meta_plugin.meta_name()), ]));