WIP Исправлена ошибка запросов, сделано удаление

This commit is contained in:
Daria Golova
2022-11-15 19:44:10 +03:00
parent c54014ad5f
commit eb753da21a
10 changed files with 180 additions and 37 deletions

View File

@@ -225,7 +225,7 @@ export default {
label: this.trimOwnerName(last_name, first_name, patronymic),
},
id: rest.id,
role: rest.role,
role: rest?.role || this.EMPLOYEE_TYPE,
};
}
return {
@@ -254,7 +254,7 @@ export default {
label: this.trimMemberName(last_name, first_name, patronymic),
},
id: rest.id,
role: rest.role,
role: rest?.role || this.MEMBER_TYPE,
};
}
return {