mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-21 18:01:39 +00:00
remove div wrapper class
This commit is contained in:
@@ -83,7 +83,7 @@ export const RightPaneForm: FunctionComponent<RightPaneFormProps> = ({
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div tabIndex={-1} onKeyDown={onKeyDown}>
|
<>
|
||||||
<div className="contextual-pane-out" onClick={onClose}></div>
|
<div className="contextual-pane-out" onClick={onClose}></div>
|
||||||
<div className="contextual-pane" id={id} style={{ height: panelHeight }} onKeyDown={onKeyDown}>
|
<div className="contextual-pane" id={id} style={{ height: panelHeight }} onKeyDown={onKeyDown}>
|
||||||
<div className="panelContentWrapper">
|
<div className="panelContentWrapper">
|
||||||
@@ -96,6 +96,6 @@ export const RightPaneForm: FunctionComponent<RightPaneFormProps> = ({
|
|||||||
</div>
|
</div>
|
||||||
{isExecuting && <PanelLoadingScreen />}
|
{isExecuting && <PanelLoadingScreen />}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -623,10 +623,6 @@ exports[`Load Query Pane should render Default properly 1`] = `
|
|||||||
submitButtonText="Load"
|
submitButtonText="Load"
|
||||||
title="Load Query Pane"
|
title="Load Query Pane"
|
||||||
>
|
>
|
||||||
<div
|
|
||||||
onKeyDown={[Function]}
|
|
||||||
tabIndex={-1}
|
|
||||||
>
|
|
||||||
<div
|
<div
|
||||||
className="contextual-pane-out"
|
className="contextual-pane-out"
|
||||||
onClick={[MockFunction]}
|
onClick={[MockFunction]}
|
||||||
@@ -3451,6 +3447,5 @@ exports[`Load Query Pane should render Default properly 1`] = `
|
|||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</RightPaneForm>
|
</RightPaneForm>
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -630,9 +630,7 @@ exports[`Upload Items Pane should render Default properly 1`] = `
|
|||||||
multiple={true}
|
multiple={true}
|
||||||
onUpload={[Function]}
|
onUpload={[Function]}
|
||||||
tabIndex={0}
|
tabIndex={0}
|
||||||
tooltip="Select one or more JSON files to upload. Each file can contain a single JSON document or an array of JSON
|
tooltip="Select one or more JSON files to upload. Each file can contain a single JSON document or an array of JSON documents. The combined size of all files in an individual upload operation must be less than 2 MB. You can perform multiple upload operations for larger data sets."
|
||||||
documents. The combined size of all files in an individual upload operation must be less than 2 MB. You
|
|
||||||
can perform multiple upload operations for larger data sets."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</RightPaneForm>
|
</RightPaneForm>
|
||||||
|
|||||||
Reference in New Issue
Block a user