We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9844ae1 commit 255517cCopy full SHA for 255517c
src/ui.rs
@@ -832,7 +832,10 @@ fn draw_table<B: Backend>(
832
.to_owned()
833
.unwrap_or_default()
834
.iter()
835
- .map(|c| Cell::from(c.format.to_owned().unwrap_or_default()))
+ .map(|c| {
836
+ Cell::from(c.format.to_owned().unwrap_or_default())
837
+ .style(c.style.to_owned().into())
838
+ })
839
.collect::<Vec<Cell>>(),
840
)
841
.height(header_height)
0 commit comments