This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 4a46c8125a37 CAMEL-23976: TUI - increase OTel span detail panel height
4a46c8125a37 is described below

commit 4a46c8125a37f2be44228344b34ad72b5bffccee
Author: Claus Ibsen <[email protected]>
AuthorDate: Thu Jul 9 20:14:50 2026 +0200

    CAMEL-23976: TUI - increase OTel span detail panel height
    
    Increase the span detail panel from 10 to 15 rows to better
    accommodate the span attributes that are typically displayed.
    
    Co-Authored-By: Claude Opus 4.6 <[email protected]>
    Signed-off-by: Claus Ibsen <[email protected]>
---
 .../java/org/apache/camel/dsl/jbang/core/commands/tui/SpansTab.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/SpansTab.java
 
b/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/SpansTab.java
index 2523de6d31e8..5cf5ae3cb6b9 100644
--- 
a/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/SpansTab.java
+++ 
b/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/SpansTab.java
@@ -446,7 +446,7 @@ class SpansTab extends AbstractTab {
 
         // Split: waterfall top, detail bottom
         List<Rect> chunks = Layout.vertical()
-                .constraints(Constraint.fill(), Constraint.length(10))
+                .constraints(Constraint.fill(), Constraint.length(15))
                 .split(area);
 
         renderWaterfall(frame, chunks.get(0), nodes, traceStart, 
traceDuration, minDuration, maxDuration);

Reply via email to