Skip to content

Commit 089f738

Browse files
committed
Fixed body parallel collecting problem
1 parent 697d0f8 commit 089f738

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tui/ui/result_tabs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ impl App<'_> {
172172
lines = self.syntax_highlighting.highlighted_body.clone().unwrap();
173173
}
174174
else {
175-
lines = body.lines().par_bridge().map(|line| Line::raw(line)).collect();
175+
lines = body.lines().map(|line| Line::raw(line)).collect();
176176
}
177177

178178
let mut body_paragraph = Paragraph::new(lines);

0 commit comments

Comments
 (0)