[DE mobile] Fix Bug 60369

This commit is contained in:
SergeyEzhin 2022-12-27 22:55:06 +04:00
parent 3077e51878
commit a7255d1dd4

View file

@ -105,7 +105,7 @@ const NavigationSheet = inject('storeNavigation')(observer(props => {
}, []);
return (
<Sheet id="view-navigation-sheet" className="navigation-sheet" backdrop={false} closeByBackdropClick={false} closeByOutsideClick={true} onSheetClosed={() => props.onclosed()} style={{height: `${stateHeight}`, opacity: `${stateOpacity}`}}>
<Sheet id="view-navigation-sheet" className="navigation-sheet" backdrop={true} closeByBackdropClick={true} onSheetClosed={() => props.onclosed()} style={{height: `${stateHeight}`, opacity: `${stateOpacity}`}}>
<div id='swipe-handler' className='swipe-container' onTouchStart={handleTouchStart} onTouchMove={handleTouchMove} onTouchEnd={handleTouchEnd}>
<Icon icon='icon icon-swipe'/>
</div>