This is an automated email from the ASF dual-hosted git repository.
clebertsuconic 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 02a6db8 NO-JIRA fixed spelling error in code of broker diagram
02a6db8 is described below
commit 02a6db8c845a613eaf8348b823211d6fc313867c
Author: Erwin Dondorp <[email protected]>
AuthorDate: Sat Apr 17 11:07:05 2021 +0200
NO-JIRA fixed spelling error in code of broker diagram
---
.../artemis-plugin/src/main/webapp/plugin/js/components/diagram.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/diagram.js
b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/diagram.js
index c065031..4fb5314 100644
---
a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/diagram.js
+++
b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/diagram.js
@@ -110,7 +110,7 @@ var Artemis;
function updateQueueKind() {
if(ctrl.kinds.Queue && !ctrl.showQueues) {
delete ctrl.kinds.Queue;
- } else if (!ctrl.kinds.Queues && ctrl.showQueues) {
+ } else if (!ctrl.kinds.Queue && ctrl.showQueues) {
ctrl.kinds.Queue = true;
}
}
@@ -130,7 +130,7 @@ var Artemis;
function updateInternalQueueKind() {
if(ctrl.kinds.InternalQueue && !ctrl.showInternalQueues) {
delete ctrl.kinds.InternalQueue;
- } else if (!ctrl.kinds.InternalQueues && ctrl.showInternalQueues) {
+ } else if (!ctrl.kinds.InternalQueue && ctrl.showInternalQueues) {
ctrl.kinds.InternalQueue = true;
}
}