From 491a5517cb92539da805d62d8188d7c6993b1b17 Mon Sep 17 00:00:00 2001 From: Yifan Liu Date: Wed, 1 Jun 2022 11:16:00 +0800 Subject: [PATCH] misc: configurator: fix IVSHMEM size missing bug Fix IVSHMEM size selection options missing bug due to data provider being deleted by mistake. Tracked-On: #7650 Signed-off-by: Yifan Liu --- .../src/pages/Config/ConfigForm/CustomWidget/IVSHMEM_REGION.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm/CustomWidget/IVSHMEM_REGION.vue b/misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm/CustomWidget/IVSHMEM_REGION.vue index d2c14d656..54c3e5551 100644 --- a/misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm/CustomWidget/IVSHMEM_REGION.vue +++ b/misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm/CustomWidget/IVSHMEM_REGION.vue @@ -163,6 +163,7 @@ export default { data() { return { providerType: this.rootSchema.definitions['ProviderType']['enum'], + IVSHMEMSize: this.rootSchema.definitions['IVSHMEMSize']['enum'], IVSHMEMRegionType: this.rootSchema.definitions['IVSHMEMRegionType'], IVSHMEMVM: this.rootSchema.definitions['IVSHMEMVM'], VMConfigType: this.rootSchema.definitions['VMConfigType'],