Skip to content

Commit d3db499

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

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

  • mrq/dashboard/static/js/views

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,11 @@ 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+
{
110+
if (destination_queue == null || destination_queue == "") {
111+
return ;
112+
}
109113
data["destination_queue"] = prompt("Enter destination queue");
110114
}
111115

0 commit comments

Comments
 (0)