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 697d0f8 commit 089f738Copy full SHA for 089f738
src/tui/ui/result_tabs.rs
@@ -172,7 +172,7 @@ impl App<'_> {
172
lines = self.syntax_highlighting.highlighted_body.clone().unwrap();
173
}
174
else {
175
- lines = body.lines().par_bridge().map(|line| Line::raw(line)).collect();
+ lines = body.lines().map(|line| Line::raw(line)).collect();
176
177
178
let mut body_paragraph = Paragraph::new(lines);
0 commit comments