Skip to content

Commit 11b997d

Browse files
committed
Make env var value input fields passwords
1 parent 8694e57 commit 11b997d

File tree

1 file changed

+5
-1
lines changed
  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.v3.$projectParam.environment-variables.new

1 file changed

+5
-1
lines changed

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.v3.$projectParam.environment-variables.new/route.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,11 @@ export default function Page() {
185185
>
186186
<EnvironmentLabel environment={environment} className="h-5 px-2" />
187187
</label>
188-
<Input name={`values[${index}].value`} placeholder="Not set" />
188+
<Input
189+
type="password"
190+
name={`values[${index}].value`}
191+
placeholder="Not set"
192+
/>
189193
</Fragment>
190194
);
191195
})}

0 commit comments

Comments
 (0)