@servantcdh/ez-planet-labeling 1.0.6 → 1.0.7
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.
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3589,7 +3589,7 @@ const LIB_AUTHOR = "최동호";
|
|
|
3589
3589
|
const LIB_CONTACT = "servantcdh@naver.com";
|
|
3590
3590
|
const __EZ_PLANET_META__ = Object.freeze({
|
|
3591
3591
|
name: LIB_NAME,
|
|
3592
|
-
version: "1.0.
|
|
3592
|
+
version: "1.0.7",
|
|
3593
3593
|
author: LIB_AUTHOR,
|
|
3594
3594
|
contact: LIB_CONTACT,
|
|
3595
3595
|
license: "Proprietary — See LICENSE"
|
|
@@ -16467,8 +16467,8 @@ function WorkspaceNavigationDetailTable({
|
|
|
16467
16467
|
const applyMaxHeight = () => {
|
|
16468
16468
|
const wrapperTop = wrapper.getBoundingClientRect().top;
|
|
16469
16469
|
const available = Math.max(window.innerHeight - wrapperTop - 8, 200);
|
|
16470
|
-
wrapper.style.
|
|
16471
|
-
wrapper.style.
|
|
16470
|
+
wrapper.style.setProperty("max-height", `${available}px`, "important");
|
|
16471
|
+
wrapper.style.setProperty("overflow-y", "auto", "important");
|
|
16472
16472
|
};
|
|
16473
16473
|
applyMaxHeight();
|
|
16474
16474
|
if (theadRef.current) {
|