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 84ff1a3 commit b5007b7Copy full SHA for b5007b7
src/view.rs
@@ -569,7 +569,7 @@ impl View {
569
let mut line = "{".to_string();
570
let len_column = self.columns.len();
571
for (j, c) in self.columns.iter().enumerate() {
572
- if c.visible {
+ if c.visible && c.kind != ConfigColumnKind::Separator {
573
let text = c.column.display_json(*pid);
574
line.push_str(&text);
575
if j != len_column - 1 {
0 commit comments