Web:Components:ContextMenu: add backdrop without background

This commit is contained in:
Timofey Boyko 2022-05-04 15:32:38 +03:00
parent a462143de2
commit 56e60f8be1

View File

@ -350,6 +350,9 @@ class ContextMenu extends Component {
return (
<>
{this.props.withBackdrop && (
<Backdrop visible={this.state.visible} withBackground={false} />
)}
<Portal element={element} appendTo={this.props.appendTo} />
</>
);