This reverts commit 58b3c31f3e.
Reason for revert: UI rendering hits an infinite tight loop.
Reproduces locally with `npm run ctest pause.spec:357` (test hangs)
Also observed on dashboard:
<img width="1467" alt="image"
src="https://user-images.githubusercontent.com/746130/233541521-1f30338d-dd83-405c-bb0d-c890611c33e3.png">
https://github.com/microsoft/playwright/issues/22348
This commit is contained in:
parent
d95268ffc0
commit
a56f97fcef
|
|
@ -107,7 +107,7 @@ export const CodeMirrorWrapper: React.FC<SourceProps> = ({
|
||||||
React.useEffect(() => {
|
React.useEffect(() => {
|
||||||
if (!codemirror)
|
if (!codemirror)
|
||||||
return;
|
return;
|
||||||
codemirror.off('change', (codemirror as any)[listenerSymbol]);
|
codemirror.off('change', (codemirror as any).listenerSymbol);
|
||||||
(codemirror as any)[listenerSymbol] = undefined;
|
(codemirror as any)[listenerSymbol] = undefined;
|
||||||
if (onChange) {
|
if (onChange) {
|
||||||
(codemirror as any)[listenerSymbol] = () => onChange(codemirror.getValue());
|
(codemirror as any)[listenerSymbol] = () => onChange(codemirror.getValue());
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue