in src/app/devices/module/addModuleIdentity/components/addModuleIdentity.tsx [70:100]
name: t(ResourceKeys.moduleIdentity.command.cancel),
onClick: navigateToModuleList
}
]}
/>
);
};
const showModuleId = () => {
return (
<TextField
ariaLabel={t(ResourceKeys.moduleIdentity.moduleId)}
label={t(ResourceKeys.moduleIdentity.moduleId)}
value={module.id}
required={true}
onChange={changeModuleIdentityName}
errorMessage={!!module.error ? t(module.error) : ''}
description={t(ResourceKeys.moduleIdentity.moduleIdTooltip)}
/>
);
};
const getAuthType = () => {
return (
<ChoiceGroup
label={t(ResourceKeys.moduleIdentity.authenticationType.text)}
selectedKey={authenticationType}
onChange={changeAuthenticationType}
options={
[
{