Browse Source

Fixed error when agents status is queried and there are no agents.

master
Ruel Tmeizeh - RuhNet 4 months ago
parent
commit
0fdf7d9165
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      src/apps/callcenter/app.js

+ 3
- 0
src/apps/callcenter/app.js View File

@ -363,6 +363,9 @@ var app = {
},
success: function (data) {
callback(data.data);
},
error: function(data) {
callback({data: []})
}
});
},


Loading…
Cancel
Save