feat: remove LeftSidePanel
This commit is contained in:
@@ -114,17 +114,9 @@ export const RecordingPage = ({ recordingName }: RecordingPageProps) => {
|
|||||||
<ActionProvider>
|
<ActionProvider>
|
||||||
<BrowserStepsProvider>
|
<BrowserStepsProvider>
|
||||||
<div>
|
<div>
|
||||||
{isLoaded ?
|
{isLoaded ? (
|
||||||
<Grid container direction="row" spacing={0}>
|
<Grid container direction="row" spacing={0}>
|
||||||
<Grid item xs={2} ref={workflowListRef} style={{ display: "flex", flexDirection: "row" }}>
|
<Grid id="browser-content" ref={browserContentRef} item xs={10} sx={{ width: '900px', height: '500px'}}>
|
||||||
<LeftSidePanel
|
|
||||||
sidePanelRef={workflowListRef.current}
|
|
||||||
alreadyHasScrollbar={hasScrollbar}
|
|
||||||
recordingName={recordingName ? recordingName : ''}
|
|
||||||
handleSelectPairForEdit={handleSelectPairForEdit}
|
|
||||||
/>
|
|
||||||
</Grid>
|
|
||||||
<Grid id="browser-content" ref={browserContentRef} item xs>
|
|
||||||
<BrowserContent />
|
<BrowserContent />
|
||||||
<InterpretationLog isOpen={showOutputData} setIsOpen={setShowOutputData} />
|
<InterpretationLog isOpen={showOutputData} setIsOpen={setShowOutputData} />
|
||||||
</Grid>
|
</Grid>
|
||||||
@@ -132,7 +124,9 @@ export const RecordingPage = ({ recordingName }: RecordingPageProps) => {
|
|||||||
<RightSidePanel onFinishCapture={handleShowOutputData} />
|
<RightSidePanel onFinishCapture={handleShowOutputData} />
|
||||||
</Grid>
|
</Grid>
|
||||||
</Grid>
|
</Grid>
|
||||||
: <Loader />}
|
) : (
|
||||||
|
<Loader />
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</BrowserStepsProvider>
|
</BrowserStepsProvider>
|
||||||
</ActionProvider>
|
</ActionProvider>
|
||||||
|
|||||||
Reference in New Issue
Block a user