aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/editor/EditorPane.tsx
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-09-05 01:29:11 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-09-06 01:05:24 +0200
commiteb94326bb64552dbd7df62ae201ccca37f368467 (patch)
treeb810f0230ace058cac8a6343455ca60113925221 /subprojects/frontend/src/editor/EditorPane.tsx
parentrefactor(frontend): more readable indentation (diff)
downloadrefinery-eb94326bb64552dbd7df62ae201ccca37f368467.tar.gz
refinery-eb94326bb64552dbd7df62ae201ccca37f368467.tar.zst
refinery-eb94326bb64552dbd7df62ae201ccca37f368467.zip
feat(frontend): show connection status
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 </>