chore: lint
This commit is contained in:
@@ -106,26 +106,26 @@ export const RecordingPage = ({ recordingName }: RecordingPageProps) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<ActionProvider>
|
<ActionProvider>
|
||||||
<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 item xs={2} ref={workflowListRef} style={{ display: "flex", flexDirection: "row" }}>
|
||||||
<LeftSidePanel
|
<LeftSidePanel
|
||||||
sidePanelRef={workflowListRef.current}
|
sidePanelRef={workflowListRef.current}
|
||||||
alreadyHasScrollbar={hasScrollbar}
|
alreadyHasScrollbar={hasScrollbar}
|
||||||
recordingName={recordingName ? recordingName : ''}
|
recordingName={recordingName ? recordingName : ''}
|
||||||
handleSelectPairForEdit={handleSelectPairForEdit}
|
handleSelectPairForEdit={handleSelectPairForEdit}
|
||||||
/>
|
/>
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid id="browser-content" ref={browserContentRef} item xs>
|
<Grid id="browser-content" ref={browserContentRef} item xs>
|
||||||
<BrowserContent />
|
<BrowserContent />
|
||||||
|
</Grid>
|
||||||
|
<Grid item xs={2}>
|
||||||
|
<RightSidePanel pairForEdit={pairForEdit} />
|
||||||
|
</Grid>
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid item xs={2}>
|
: <Loader />}
|
||||||
<RightSidePanel pairForEdit={pairForEdit} />
|
</div>
|
||||||
</Grid>
|
|
||||||
</Grid>
|
|
||||||
: <Loader />}
|
|
||||||
</div>
|
|
||||||
</ActionProvider>
|
</ActionProvider>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user