Skip to content

Commit 62cd693

Browse files
committed
Adding a supplementary for move action in groupactions (dashboard/static/js/views/jobs.js)
1 parent efbfffe commit 62cd693

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

  • mrq/dashboard/static/js/views

mrq/dashboard/static/js/views/jobs.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,10 @@ define(["jquery", "underscore", "views/generic/datatablepage", "models"],functio
105105
var action = $(evt.target).data("action");
106106
var data = _.clone(this.filters);
107107

108-
if (action == "move") {
108+
if (action == "move"){
109+
if (destination_queue == null || destination_queue == "") {
110+
return ;
111+
}
109112
data["destination_queue"] = prompt("Enter destination queue");
110113
}
111114

0 commit comments

Comments
 (0)