Skip to content

Commit

Permalink
ARTEMIS-4549 fix texts for queue operations
Browse files Browse the repository at this point in the history
  • Loading branch information
Erwin Dondorp authored and jbertram committed Dec 30, 2023
1 parent c089e72 commit 25fc034
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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()">
Expand All @@ -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()">
Expand Down Expand Up @@ -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() {
Expand All @@ -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 () {
Expand Down

0 comments on commit 25fc034

Please sign in to comment.