From 32ee5c65c9095c70d459c0428dc9623c93029a4d Mon Sep 17 00:00:00 2001 From: Tsu-ba-me Date: Fri, 11 Aug 2023 14:04:38 -0400 Subject: [PATCH] fix(striker-ui): rename node->subnode in prepare host form --- striker-ui/components/PrepareHostForm.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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'} ), },