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

jbertram 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 25fc034227 ARTEMIS-4549 fix texts for queue operations
25fc034227 is described below

commit 25fc0342275b29cd73123523a46e6e94582597cd
Author: Erwin Dondorp <[email protected]>
AuthorDate: Fri Dec 29 16:36:57 2023 +0100

    ARTEMIS-4549 fix texts for queue operations
---
 .../src/main/webapp/plugin/js/components/deleteQueue.js           | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/deleteQueue.js
 
b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/deleteQueue.js
index e13eb71210..af2318a12c 100644
--- 
a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/deleteQueue.js
+++ 
b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/deleteQueue.js
@@ -39,7 +39,7 @@ var Artemis;
              </button>
 
              <div hawtio-confirm-dialog="$ctrl.deleteDialog"
-                  title="Confirm delete address"
+                  title="Confirm delete queue"
                   ok-button-text="Delete"
                   cancel-button-text="Cancel"
                   on-ok="$ctrl.deleteQueue()">
@@ -62,7 +62,7 @@ var Artemis;
             </button>
 
             <div hawtio-confirm-dialog="$ctrl.purgeDialog"
-               title="Confirm purge address"
+               title="Confirm purge queue"
                ok-button-text="Purge"
                cancel-button-text="Cancel"
                on-ok="$ctrl.purgeQueue()">
@@ -112,7 +112,7 @@ var Artemis;
         }
 
         function onError(response) {
-           Core.notification("error", "Could not delete address: " + 
response.error);
+           Core.notification("error", "Could not delete queue: " + 
response.error);
         }
 
        function operationPurgeSuccess() {
@@ -123,7 +123,7 @@ var Artemis;
        }
 
       function onPurgeError(response) {
-          Core.notification("error", "Could not purge address: " + 
response.error);
+          Core.notification("error", "Could not purge queue: " + 
response.error);
       }
 
        this.deleteQueue = function () {

Reply via email to