Merge pull request #839 from RohitR311/capflow-revamp

fix: capture revamp flow
This commit is contained in:
Karishma
2025-10-22 14:57:40 +05:30
committed by GitHub
3 changed files with 81 additions and 28 deletions

View File

@@ -2185,7 +2185,7 @@ export const BrowserWindow = () => {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
`}</style>j
`}</style>
{(getText === true || getList === true) &&
!showAttributeModal &&

View File

@@ -702,12 +702,6 @@ export const DOMBrowserRenderer: React.FC<RRWebDOMBrowserRendererProps> = ({
return;
}
if (isInCaptureMode) {
e.preventDefault();
e.stopPropagation();
return;
}
if (!isInCaptureMode) {
const wheelEvent = e as WheelEvent;
const deltaX = Math.round(wheelEvent.deltaX / 10) * 10;