diff --git a/striker-ui/components/ManageUps/CommonUpsInputGroup.tsx b/striker-ui/components/ManageUps/CommonUpsInputGroup.tsx index 3550ee24..6e1d49a9 100644 --- a/striker-ui/components/ManageUps/CommonUpsInputGroup.tsx +++ b/striker-ui/components/ManageUps/CommonUpsInputGroup.tsx @@ -4,6 +4,9 @@ import Grid from '../Grid'; import InputWithRef from '../InputWithRef'; import OutlinedInputWithLabel from '../OutlinedInputWithLabel'; +const INPUT_ID_UPS_IP = 'common-ups-input-ip-address'; +const INPUT_ID_UPS_NAME = 'common-ups-input-host-name'; + const CommonUpsInputGroup: FC = ({ previous: { upsIPAddress: previousIpAddress, upsName: previousUpsName } = {}, }) => ( @@ -16,7 +19,7 @@ const CommonUpsInputGroup: FC = ({ @@ -30,7 +33,7 @@ const CommonUpsInputGroup: FC = ({ @@ -45,4 +48,6 @@ const CommonUpsInputGroup: FC = ({ ); +export { INPUT_ID_UPS_IP, INPUT_ID_UPS_NAME }; + export default CommonUpsInputGroup;