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 ba1b63755..d7a9e2953 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 @@ -16,7 +16,10 @@ - + + + Name must be between 1-27 characters and contain only letters, digits and "_". + @@ -189,6 +192,10 @@ export default { } }, methods: { + validateIvshrgName(value) { + var regexp = new RegExp(this.IVSHMEMRegionType.properties.NAME.pattern); + return regexp.test(value); + }, validation(value) { return (value != null) && (value.length != 0); },