PMCORE-4083

This commit is contained in:
Luciana Nuñez
2022-12-06 12:18:03 -04:00
parent 2c1e09c084
commit a1e77e3a59
2 changed files with 2 additions and 2 deletions

2
resources/assets/js/home/modal/ModalAssignCase.vue Normal file → Executable file
View File

@@ -121,7 +121,7 @@ export default {
*/ */
getUsers() { getUsers() {
let that = this; let that = this;
api.cases.getUserToReassign(this.data).then((response) => { api.cases.getUsersToReassign(this.data).then((response) => {
var users = response.data.data, var users = response.data.data,
i; i;
if (response.statusText == "OK" || response.status === 200) { if (response.statusText == "OK" || response.status === 200) {

2
resources/assets/js/home/modal/ModalReassignCase.vue Normal file → Executable file
View File

@@ -125,7 +125,7 @@ export default {
*/ */
getUsersReassign() { getUsersReassign() {
let that = this; let that = this;
api.cases.getUserToReassign(this.data).then((response) => { api.cases.getUsersToReassign(this.data).then((response) => {
var users = response.data.data, var users = response.data.data,
i; i;
if (response.statusText == "OK" || response.status === 200) { if (response.statusText == "OK" || response.status === 200) {