diff --git a/libs/locales/lib/en/translation.json b/libs/locales/lib/en/translation.json index 25cbcce20a..7bc24e1471 100644 --- a/libs/locales/lib/en/translation.json +++ b/libs/locales/lib/en/translation.json @@ -706,7 +706,7 @@ "ai:The hosts you selected are using different proxy settings. Configure a proxy that will be applied for these hosts. Configure at least one of the proxy settings below.": "The hosts you selected are using different proxy settings. Configure a proxy that will be applied for these hosts. Configure at least one of the following proxy settings.", "ai:The HTTP proxy URL that agents should use to access the discovery service.": "The HTTP proxy URL that agents should use to access the discovery service.", "ai:The IP address pool to use for service IP addresses. You can enter only one IP address pool. If you need to access the services from an external network, configure load balancers and routers to manage the traffic.": "The IP address pool to use for service IP addresses. You can enter only one IP address pool. If you need to access the services from an external network, configure load balancers and routers to manage the traffic.", - "ai:The MAC address of the host's network connected NIC that will be used to provision the host. Required for libvirt VMs driven by vbmc.": "The MAC address of the host's network connected NIC that will be used to provision the host. Required for libvirt VMs driven by vbmc.", + "ai:The MAC address of the host's network connected NIC that will be used to provision the host.": "The MAC address of the host's network connected NIC that will be used to provision the host.", "ai:The output displays the following:": "The output displays the following:", "ai:The resource has been saved and the YAML is now read only.": "The resource has been saved and the YAML is now read only.", "ai:The resource you are changing is already in use by hosts in the infrastructure environment. A change will require booting the hosts with a new discovery ISO file.": "The resource you are changing is already in use by hosts in the infrastructure environment. A change will require booting the hosts with a new discovery ISO file.", diff --git a/libs/ui-lib/lib/cim/components/Agent/BMCForm.tsx b/libs/ui-lib/lib/cim/components/Agent/BMCForm.tsx index 07ea721c50..c0ded2b179 100644 --- a/libs/ui-lib/lib/cim/components/Agent/BMCForm.tsx +++ b/libs/ui-lib/lib/cim/components/Agent/BMCForm.tsx @@ -279,8 +279,9 @@ const BMCForm: React.FC = ({ name="bootMACAddress" placeholder={t('ai:Enter an address')} description={t( - "ai:The MAC address of the host's network connected NIC that will be used to provision the host. Required for libvirt VMs driven by vbmc.", + "ai:The MAC address of the host's network connected NIC that will be used to provision the host.", )} + isRequired /> { const bmcAddressValidationMessagesList = bmcAddressValidationMessages(t); - return Yup.string().matches(BMC_REGEX, { + return Yup.string().required().matches(BMC_REGEX, { message: bmcAddressValidationMessagesList.INVALID_VALUE, excludeEmptyString: true, });