This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch feat/camel-tui in repository https://gitbox.apache.org/repos/asf/camel.git
commit 146c4b17ad59ea7cc2f2924c8ebea673a723b688 Author: Claus Ibsen <[email protected]> AuthorDate: Mon May 18 10:22:47 2026 +0200 TUI: fix HTTP sort column order to match table column order method → path → consumes → produces → source Co-Authored-By: Claude Sonnet 4.6 <[email protected]> --- .../java/org/apache/camel/dsl/jbang/core/commands/tui/CamelMonitor.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/CamelMonitor.java b/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/CamelMonitor.java index fa40e567e029..a3f5798a1bc0 100644 --- a/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/CamelMonitor.java +++ b/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/CamelMonitor.java @@ -144,7 +144,7 @@ public class CamelMonitor extends CamelCommand { private static final String[] CB_SORT_COLUMNS = { "route", "id", "component", "state" }; // HTTP sort columns - private static final String[] HTTP_SORT_COLUMNS = { "method", "path", "source", "consumes", "produces" }; + private static final String[] HTTP_SORT_COLUMNS = { "method", "path", "consumes", "produces", "source" }; @CommandLine.Parameters(description = "Name or pid of running Camel integration", arity = "0..1") String name = "*";
