diff --git a/src/ui.rs b/src/ui.rs index 2673c19..7b44b7d 100644 --- a/src/ui.rs +++ b/src/ui.rs @@ -832,7 +832,10 @@ fn draw_table( .to_owned() .unwrap_or_default() .iter() - .map(|c| Cell::from(c.format.to_owned().unwrap_or_default())) + .map(|c| { + Cell::from(c.format.to_owned().unwrap_or_default()) + .style(c.style.to_owned().into()) + }) .collect::>(), ) .height(header_height)