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
commit fd2fc21555e380e1a66280863885bc5718ccb4d3 Author: Claus Ibsen <[email protected]> AuthorDate: Mon Jul 27 20:52:48 2026 +0200 camel-tui: Swap SCHEDULE and POLLS column order in Consumers tab Co-Authored-By: Claude Opus 4.6 <[email protected]> Signed-off-by: Claus Ibsen <[email protected]> --- .../org/apache/camel/dsl/jbang/core/commands/tui/ConsumersTab.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/ConsumersTab.java b/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/ConsumersTab.java index 2c9361b3359f..6942081fdd18 100644 --- a/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/ConsumersTab.java +++ b/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/ConsumersTab.java @@ -104,8 +104,8 @@ class ConsumersTab extends AbstractTableTab { Cell.from(type), Cell.from(ci.remote ? "x" : ""), rightCell(String.valueOf(ci.inflight), 8), - rightCell(ci.totalCounter != null ? String.valueOf(ci.totalCounter) : "", 8), Cell.from(schedule), + rightCell(ci.totalCounter != null ? String.valueOf(ci.totalCounter) : "", 8), Cell.from(sinceLast), Cell.from(Span.styled(uri, healthDown ? Theme.error() : Style.EMPTY)))); } @@ -122,8 +122,8 @@ class ConsumersTab extends AbstractTableTab { Cell.from(Span.styled(sortLabel("TYPE", "type"), sortStyle("type"))), Cell.from(Span.styled(sortLabel("REMOTE", "remote"), sortStyle("remote"))), rightCell(sortLabel("INFLIGHT", "inflight"), 8, sortStyle("inflight")), - rightCell(sortLabel("POLLS", "polls"), 8, sortStyle("polls")), Cell.from(Span.styled("SCHEDULE", Style.EMPTY.bold())), + rightCell(sortLabel("POLLS", "polls"), 8, sortStyle("polls")), Cell.from(Span.styled("SINCE-LAST", Style.EMPTY.bold())), Cell.from(Span.styled(sortLabel("URI", "uri"), sortStyle("uri"))))) .widths( @@ -132,8 +132,8 @@ class ConsumersTab extends AbstractTableTab { Constraint.length(16), Constraint.length(8), Constraint.length(8), - Constraint.length(8), Constraint.length(22), + Constraint.length(8), Constraint.length(22), Constraint.fill()) .block(Block.builder().borderType(BorderType.ROUNDED).borders(Borders.ALL)
