Fix crash reporter

Summary: Changelog: Make crash reporter pick up and parse .ips crash reports

Reviewed By: LukeDefeo

Differential Revision: D38355089

fbshipit-source-id: dc1b46257ea12c2e67d8a9baab7f35a905be2204
This commit is contained in:
Andrey Goncharov
2022-08-02 10:08:35 -07:00
committed by Facebook GitHub Bot
parent a998ecb956
commit f132d95bee
3 changed files with 106 additions and 26 deletions

View File

@@ -200,12 +200,12 @@ export class Sidebar extends Component<SidebarProps, SidebarState> {
{gutter ? (
<GutterWrapper position={position}>
{/* Stop propagating mousedown events to prevent SidebarInteractiveContainer from resizing whenever a user starts selecting text in a child */}
<Layout.Container onMouseDown={(e) => e.stopPropagation()}>
<Layout.Container grow onMouseDown={(e) => e.stopPropagation()}>
{children}
</Layout.Container>
</GutterWrapper>
) : (
<Layout.Container onMouseDown={(e) => e.stopPropagation()}>
<Layout.Container grow onMouseDown={(e) => e.stopPropagation()}>
{children}
</Layout.Container>
)}