mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2024-12-21 05:53:06 +00:00
Warn that VMware and VirtualBox support is deprecated
This commit is contained in:
parent
d982ae0a00
commit
8e338da896
@ -37,6 +37,7 @@ export class AddVirtualBoxTemplateComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
|
this.toasterService.warning(`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.warning(`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…
Reference in New Issue
Block a user