Skip to content

Commit

Permalink
Fix some projets issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mboudet committed Aug 1, 2024
1 parent eb12fbb commit e92c667
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion core/project.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ async function create_project_request(asked_project, user) {
'#NAME#': asked_project.id,
'#SIZE#': asked_project.size,
'#CPU#': asked_project.cpu,
'#EXPIRE#': asked_project.expire.toISOString().split('T')[0],
'#EXPIRE#': new Date(asked_project.expire).toISOString().split('T')[0],
'#ORGA#': asked_project.orga,
'#DESC#': asked_project.description
});
Expand Down
2 changes: 2 additions & 0 deletions manager2/src/app/project/project.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ export class ProjectComponent implements OnInit {
@ViewChild('dtu') tableuser: Table;
@ViewChild('formModal') formModal: ElementRef;

@ViewChild('terms_and_conditions_hds') terms_and_conditions_hds;

new_project: any
projects: any
users: any
Expand Down

0 comments on commit e92c667

Please sign in to comment.