refs #2118. Fixed bug in manage-repo form

pull/24/head
Manuel Aranda Rosales 2025-06-02 08:09:59 +02:00
parent f94d522420
commit 6c7951be31
1 changed files with 2 additions and 2 deletions

View File

@ -30,8 +30,8 @@ export class ManageRepositoryComponent implements OnInit {
this.imageForm = this.fb.group({
name: [null, Validators.required],
ip: [null],
sshPort: [null],
user: [null],
sshPort: ['22'],
user: ['opengnsys'],
comments: [null],
});
}