From 87755de382784e75264611d8851220575f8df88c Mon Sep 17 00:00:00 2001 From: "SANDHYA.JS" Date: Tue, 26 Apr 2022 13:05:18 +0530 Subject: [PATCH] Fix Bug 1923: Not possible to add VIM with type dummy - Added the option 'dummy' support from the UI for creating dummy VIM's - Type 'Dummy' is added in the dropdown of VIM account type. Change-Id: Ic69fb33233eb5aca7bc91f500e111cbbbd821226 Signed-off-by: SANDHYA.JS --- src/models/CommonModel.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/models/CommonModel.ts b/src/models/CommonModel.ts index 7b51e9e..e71f46f 100644 --- a/src/models/CommonModel.ts +++ b/src/models/CommonModel.ts @@ -205,7 +205,8 @@ export const VIM_TYPES: TYPESECTION[] = [ { value: 'vmware', title: 'VMware vCD' }, { value: 'openvim', title: 'OpenVIM' }, { value: 'opennebula', title: 'OpenNebula' }, - { value: 'azure', title: 'Azure' } + { value: 'azure', title: 'Azure' }, + { value: 'dummy', title: 'Dummy' } ]; /** Constants of the SDN Types */ export const SDN_TYPES: TYPESECTION[] = [ -- 2.17.1