[
https://issues.apache.org/jira/browse/ARTEMIS-2982?focusedWorklogId=509955&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-509955
]
ASF GitHub Bot logged work on ARTEMIS-2982:
-------------------------------------------
Author: ASF GitHub Bot
Created on: 10/Nov/20 21:51
Start Date: 10/Nov/20 21:51
Worklog Time Spent: 10m
Work Description: sebthom commented on a change in pull request #3331:
URL: https://github.com/apache/activemq-artemis/pull/3331#discussion_r520896447
##########
File path:
artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/queues.js
##########
@@ -125,18 +125,23 @@ var Artemis;
};
ctrl.tableColumns = [
{ header: 'ID', itemField: 'id' },
- { header: 'Name', itemField: 'name' },
+ { header: 'Name', itemField: 'name',
+ templateFn: function(value, item) { return '<a href="#"
onclick="selectQueue(\'' + item.address + '\',\'' + value + '\',\'' +
getQueuesNid(item, $location) + '\')">' + value + '</a>' }
+ },
{ header: 'Routing Types', itemField: 'routingTypes' },
- { header: 'Queue Count', itemField: 'queueCount' },
Review comment:
This was on purpose, the queue object has no queueCount property.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 509955)
Time Spent: 0.5h (was: 20m)
> Improve "Browse Queues" view in web console
> -------------------------------------------
>
> Key: ARTEMIS-2982
> URL: https://issues.apache.org/jira/browse/ARTEMIS-2982
> Project: ActiveMQ Artemis
> Issue Type: Improvement
> Components: Web Console
> Affects Versions: 2.16.0
> Reporter: Sebastian T
> Priority: Minor
> Time Spent: 0.5h
> Remaining Estimate: 0h
>
> The accompanying PR improves the "Browse Queues" view in the following ways:
> # Remove unused column "Queue Count"
> # When clicking on an address in the "address" column the respective address
> is selected in the navigation tree
> # Make "name" cell in each row clickable so it selects the respective queue
> in theĀ navigation tree and sets the queue filter.
> # Make "message count" cell in each row clickable so it navigates to the
> message queue browser.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)