We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43dc813 commit a3a5d26Copy full SHA for a3a5d26
1 file changed
packages/devextreme/js/__internal/ui/popup/m_popup.ts
@@ -435,10 +435,13 @@ class Popup<
435
}
436
437
_updateResizeCallbackSkipCondition(): void {
438
+ const isShowAnimationResizing = this._isShowAnimationResizing();
439
+
440
this._shouldSkipContentResize = (
441
entry: ResizeObserverEntry,
- ): boolean => Boolean(this._showAnimationProcessing)
- || this._areContentDimensionsRendered(entry);
442
+ ): boolean => (isShowAnimationResizing
443
+ // eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
444
+ && this._showAnimationProcessing) || this._areContentDimensionsRendered(entry);
445
446
447
_observeContentResize(shouldObserve: boolean): void {
0 commit comments