Merged in feature/PMCORE-4083 (pull request #8657)

PMCORE-4083

Approved-by: Julio Cesar Laura Avendaño
This commit is contained in:
Luciana Nuñez
2022-12-06 20:18:32 +00:00
committed by Julio Cesar Laura Avendaño
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) {