barsa-sap-ui 1.0.264 → 1.0.265
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1999,7 +1999,7 @@ class SapUiReportBaseComponent extends ReportBaseComponent {
|
|
|
1999
1999
|
const elDom = this.el.nativeElement;
|
|
2000
2000
|
let parentDom = elDom.parentElement;
|
|
2001
2001
|
let parentHeight = parentDom?.clientHeight ?? 0;
|
|
2002
|
-
while (parentDom != null &&
|
|
2002
|
+
while (parentDom != null && parentHeight < 40) {
|
|
2003
2003
|
parentDom = parentDom.parentElement;
|
|
2004
2004
|
parentHeight = parentDom?.clientHeight ?? 0;
|
|
2005
2005
|
}
|