aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/editor/EditorPane.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/src/editor/EditorPane.tsx')
-rw-r--r--subprojects/frontend/src/editor/EditorPane.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/subprojects/frontend/src/editor/EditorPane.tsx b/subprojects/frontend/src/editor/EditorPane.tsx
index 2651726c..079ebcdc 100644
--- a/subprojects/frontend/src/editor/EditorPane.tsx
+++ b/subprojects/frontend/src/editor/EditorPane.tsx
@@ -7,6 +7,7 @@ import React, { useState } from 'react';
7 7
8import { useRootStore } from '../RootStore'; 8import { useRootStore } from '../RootStore';
9 9
10import ConnectionStatusNotification from './ConnectionStatusNotification';
10import EditorArea from './EditorArea'; 11import EditorArea from './EditorArea';
11import EditorButtons from './EditorButtons'; 12import EditorButtons from './EditorButtons';
12import GenerateButton from './GenerateButton'; 13import GenerateButton from './GenerateButton';
@@ -43,6 +44,7 @@ export default observer(function EditorPane(): JSX.Element {
43 <EditorLoading /> 44 <EditorLoading />
44 ) : ( 45 ) : (
45 <> 46 <>
47 <ConnectionStatusNotification editorStore={editorStore} />
46 <SearchPanelPortal editorStore={editorStore} /> 48 <SearchPanelPortal editorStore={editorStore} />
47 <EditorArea editorStore={editorStore} /> 49 <EditorArea editorStore={editorStore} />
48 </> 50 </>