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 ( 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> </>
); );
}; };

View File

@@ -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>