NO-JIRA fixed spelling error in code of broker diagram

This commit is contained in:
Erwin Dondorp 2021-04-17 11:07:05 +02:00 committed by clebertsuconic
parent 0f3d87799a
commit 02a6db8c84
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
}