remove div wrapper class

This commit is contained in:
hardiknai-techm
2021-04-24 15:49:10 +05:30
parent 9f0d5658c7
commit 8de3edd0f8
3 changed files with 1391 additions and 1398 deletions

View File

@@ -83,7 +83,7 @@ export const RightPaneForm: FunctionComponent<RightPaneFormProps> = ({
};
return (
<div tabIndex={-1} onKeyDown={onKeyDown}>
<>
<div className="contextual-pane-out" onClick={onClose}></div>
<div className="contextual-pane" id={id} style={{ height: panelHeight }} onKeyDown={onKeyDown}>
<div className="panelContentWrapper">
@@ -96,6 +96,6 @@ export const RightPaneForm: FunctionComponent<RightPaneFormProps> = ({
</div>
{isExecuting && <PanelLoadingScreen />}
</div>
</div>
</>
);
};

View File

@@ -630,9 +630,7 @@ exports[`Upload Items Pane should render Default properly 1`] = `
multiple={true}
onUpload={[Function]}
tabIndex={0}
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."
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."
/>
</div>
</RightPaneForm>