|
@@ -37,6 +37,7 @@ export class SubmittedComponent implements OnInit {
|
|
|
this.activeRoute.paramMap.subscribe(async (params) => {
|
|
|
let id = params.get('id');
|
|
|
let query = new Parse.Query('EduProcess');
|
|
|
+ query.notEqualTo('isDeleted', true);
|
|
|
query.include('department');
|
|
|
query.equalTo('objectId', id);
|
|
|
this.eduProcess = await query.first();
|