diff --git a/src/modules/05_placement/components/probation/FormAppoint/FormAppoint.vue b/src/modules/05_placement/components/probation/FormAppoint/FormAppoint.vue index 9f52fe786..87ed0f29e 100644 --- a/src/modules/05_placement/components/probation/FormAppoint/FormAppoint.vue +++ b/src/modules/05_placement/components/probation/FormAppoint/FormAppoint.vue @@ -258,6 +258,7 @@ function close() { modal.value = false; member.value = ""; selected.value = []; + rowsDirector.value = []; } function updatePagination(newPagination: any) { @@ -324,13 +325,13 @@ async function getPerson() { ); totalList.value = Math.ceil(dataTotal / pagination.value.rowsPerPage); total.value = dataTotal; - hideLoader(); }) .catch((e) => { messageError($q, e); - hideLoader(); }) - .finally(() => {}); + .finally(() => { + hideLoader(); + }); } function onDelete(id: string) {