use requestAnimationFrame instead of setTimeOut
This commit is contained in:
Родитель
7a4961352e
Коммит
51eb498648
|
@ -250,7 +250,7 @@ export abstract class ReactWrapperComponent<TProps extends {}> implements AfterC
|
|||
const nativeElement = this.elementRef.nativeElement;
|
||||
|
||||
// We want to wait until child elements are rendered
|
||||
afterRenderFinished(() => {
|
||||
requestAnimationFrame(() => {
|
||||
if (nativeElement.firstElementChild) {
|
||||
const rootChildDisplay = getComputedStyle(nativeElement.firstElementChild).display;
|
||||
nativeElement.style.display = rootChildDisplay;
|
||||
|
|
Загрузка…
Ссылка в новой задаче