Make env var value input fields passwords

This commit is contained in:
Eric Allam
2024-03-29 09:05:53 +00:00
parent 8694e573f5
commit 11b997d2bf
@@ -185,7 +185,11 @@ export default function Page() {
>
<EnvironmentLabel environment={environment} className="h-5 px-2" />
</label>
<Input name={`values[${index}].value`} placeholder="Not set" />
<Input
type="password"
name={`values[${index}].value`}
placeholder="Not set"
/>
</Fragment>
);
})}