update librerias

This commit is contained in:
2022-08-23 17:12:09 -05:00
parent 7f7dfbe9c1
commit 2a031a7658
25 changed files with 2775 additions and 3297 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ export class StatusService {
}
findById(id_status: number) {
return this.repository.findOne({ id_status }).then((status) => {
return this.repository.findOne({ where: { id_status } }).then((status) => {
if (!status) throw new NotFoundException('No existe este status.');
return status;
});