diff --git a/striker-ui/components/PrepareHostForm.tsx b/striker-ui/components/PrepareHostForm.tsx index 0ea5017e..d90d0d8c 100644 --- a/striker-ui/components/PrepareHostForm.tsx +++ b/striker-ui/components/PrepareHostForm.tsx @@ -522,7 +522,7 @@ const PrepareHostForm: FC = () => { setIsShowAccessSection(true); }} radioItems={{ - node: { label: 'Node', value: 'node' }, + node: { label: 'Subnode', value: 'node' }, dr: { label: 'Disaster Recovery (DR) host', value: 'dr' }, }} /> @@ -549,7 +549,9 @@ const PrepareHostForm: FC = () => { 'preparehost-confirm-host-type-value': { children: ( - {inputHostType === 'dr' ? 'Disaster Recovery (DR)' : 'Node'} + {inputHostType === 'dr' + ? 'Disaster Recovery (DR)' + : 'Subnode'} ), },