Merge branch 'hotfix/v1.1.1' of github.com:ONLYOFFICE/AppServer into hotfix/v1.1.1

This commit is contained in:
Viktor Fomin 2022-02-15 14:10:44 +03:00
commit 264b3a8764

View File

@ -13,7 +13,8 @@ const StyledBackdrop = styled.div`
z-index: ${(props) => props.zIndex};
left: 0;
top: 0;
cursor: ${(props) => (props.needBackground ? "pointer" : "default")}; ;
cursor: ${(props) =>
props.needBackground && !props.isModalDialog ? "pointer" : "default"}; ;
`;
StyledBackdrop.defaultProps = {