mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-04-24 21:09:40 +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() {
|
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');
|
const controller_id = this.route.snapshot.paramMap.get('controller_id');
|
||||||
this.controllerService.get(parseInt(controller_id, 10)).then((controller:Controller ) => {
|
this.controllerService.get(parseInt(controller_id, 10)).then((controller:Controller ) => {
|
||||||
this.controller = controller;
|
this.controller = controller;
|
||||||
|
@ -37,6 +37,7 @@ export class AddVmwareTemplateComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit() {
|
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');
|
const controller_id = this.route.snapshot.paramMap.get('controller_id');
|
||||||
this.controllerService.get(parseInt(controller_id, 10)).then((controller:Controller ) => {
|
this.controllerService.get(parseInt(controller_id, 10)).then((controller:Controller ) => {
|
||||||
this.controller = controller;
|
this.controller = controller;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user