Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
lasanthaS committed Oct 11, 2024
1 parent bbe94d8 commit b34391d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ const Policies: React.FC = () => {

return (
<StyledApiOperationContextProvider value={providerValue}>
<DndProvider backend={HTML5Backend}>
<DndProvider backend={HTML5Backend} context={window}>
<Box mb={4}>
<Typography id='itest-api-details-resources-head' variant='h4' component='h2' gutterBottom>
<FormattedMessage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ class Scopes extends React.Component {
}

return (
<div className={classes.heading}>
<Root className={classes.heading}>
<div className={classes.titleWrapper}>
<Typography variant='h4' component='h2' align='left' className={classes.mainTitle}>
<FormattedMessage
Expand Down Expand Up @@ -419,7 +419,7 @@ class Scopes extends React.Component {
</div>

<MUIDataTable title={false} data={scopesList} columns={columns} options={options}/>
</div>
</Root>
);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ const Policies: FC<PolicyProps> = ({
return (
<GlobalPolicyContextProvider value={providerValue}>
<Box mt={3} mb={3} ml={5} mr={5}>
<DndProvider backend={HTML5Backend}>
<DndProvider backend={HTML5Backend} context={window}>
{/**
* Breadcrumb Navigation.
*/}
Expand Down

0 comments on commit b34391d

Please sign in to comment.