mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2024-12-20 21:43:06 +00:00
Merge pull request #1434 from GNS3/vmware-virtualbox-deprecated
Mark VMware and VirtualBox support as deprecated
This commit is contained in:
commit
17a9e3d089
@ -37,6 +37,7 @@ export class AddVirtualBoxTemplateComponent implements OnInit {
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
this.toasterService.error(`VirtualBox VM support is deprecated and will be removed in a future version, please use Qemu VMs instead`);
|
||||
const controller_id = this.route.snapshot.paramMap.get('controller_id');
|
||||
this.controllerService.get(parseInt(controller_id, 10)).then((controller:Controller ) => {
|
||||
this.controller = controller;
|
||||
|
@ -37,6 +37,7 @@ export class AddVmwareTemplateComponent implements OnInit {
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
this.toasterService.error(`VMware VM support is deprecated and will be removed in a future version, please use Qemu VMs instead`);
|
||||
const controller_id = this.route.snapshot.paramMap.get('controller_id');
|
||||
this.controllerService.get(parseInt(controller_id, 10)).then((controller:Controller ) => {
|
||||
this.controller = controller;
|
||||
|
Loading…
Reference in New Issue
Block a user