This is an automated email from the ASF dual-hosted git repository.
wu-sheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-horizon-ui.git
The following commit(s) were added to refs/heads/main by this push:
new 825014f fix(logs): log-entry popout reads cramped — min-height +
wider cap (#22)
825014f is described below
commit 825014f9f8a44b3af0e11afa715c9580722794f7
Author: 吴晟 Wu Sheng <[email protected]>
AuthorDate: Wed May 27 22:35:57 2026 +0800
fix(logs): log-entry popout reads cramped — min-height + wider cap (#22)
---
apps/ui/src/layer/logs/LayerLogsView.vue | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/apps/ui/src/layer/logs/LayerLogsView.vue
b/apps/ui/src/layer/logs/LayerLogsView.vue
index 3916fe1..5747234 100644
--- a/apps/ui/src/layer/logs/LayerLogsView.vue
+++ b/apps/ui/src/layer/logs/LayerLogsView.vue
@@ -1540,7 +1540,8 @@ function jumpToTrace(traceId: string, ts?: number): void {
}
.lg-popout {
width: min(1100px, 92vw);
- max-height: 86vh;
+ min-height: 70vh;
+ max-height: 92vh;
display: flex;
flex-direction: column;
overflow: hidden;