You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by br...@apache.org on 2021/06/07 11:17:00 UTC

[activemq-artemis] branch main updated: ARTEMIS-3332 - fix search on consumer count in console

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

brusdev pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/main by this push:
     new 686a61d  ARTEMIS-3332 - fix search on consumer count in console
686a61d is described below

commit 686a61dd656e4b40160575a50acab68e770d6426
Author: Andy Taylor <an...@gmail.com>
AuthorDate: Sat Jun 5 08:38:02 2021 +0100

    ARTEMIS-3332 - fix search on consumer count in console
    
    https://issues.apache.org/jira/browse/ARTEMIS-3332
---
 .../artemis-plugin/src/main/webapp/plugin/js/components/queues.js       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/queues.js b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/queues.js
index 6c80f21..c31f95d 100644
--- a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/queues.js
+++ b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/queues.js
@@ -127,7 +127,7 @@ var Artemis;
             fieldOptions: [
                 {id: 'id', name: 'ID'},
                 {id: 'name', name: 'Name'},
-                {id: 'consumerId', name: 'Consumer ID'},
+                {id: 'consumerCount', name: 'Consumer Count'},
                 {id: 'address', name: 'Address'},
                 {id: 'filter', name: 'Filter'},
                 {id: 'maxConsumers', name: 'Max Consumers'},