diff --git a/crates/editor/src/element.rs b/crates/editor/src/element.rs index e2b8a49f9eaa23340895779724660c3b46fdc0af..392a67bb0d495c3d49063bd4aa6ec87ea6bfd610 100644 --- a/crates/editor/src/element.rs +++ b/crates/editor/src/element.rs @@ -8696,6 +8696,10 @@ fn render_blame_entry_popover( window: &mut Window, cx: &mut App, ) -> Option { + if markdown.read(cx).is_parsing() { + return None; + } + let renderer = cx.global::().0.clone(); let blame = blame.read(cx); let repository = blame.repository(cx, buffer)?;