This commit is contained in:
Sébastien André
2020-04-02 17:44:23 +02:00
parent 888903cef1
commit 4abcf4832f
2 changed files with 9 additions and 1 deletions

View File

@@ -55,6 +55,9 @@ export class ListOfGearsComponent implements OnInit {
}
openDialogToAdd() {
this.dialog.open(NewGearComponent);
this.dialog.open(NewGearComponent, {
height: "400px",
width: "600px"
});
}
}