Skip to content

Commit

Permalink
Flagging sensitive inputs as passwords to mask values during entry (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
galvana authored Jul 20, 2023
1 parent 959d26c commit 98db649
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ The types of changes are:
### Fixed
- Privacy notice UI's list of possible regions now matches the backend's list [#3787](https://github.com/ethyca/fides/pull/3787)
- Admin UI "property does not existing" build issue [#3831](https://github.com/ethyca/fides/pull/3831)
- Flagging sensitive inputs as passwords to mask values during entry [#3843](https://github.com/ethyca/fides/pull/3843)

## [2.16.0](https://github.com/ethyca/fides/compare/2.15.1...2.16.0)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ const ConnectorParametersForm: React.FC<ConnectorParametersFormProps> = ({
{item.type !== "integer" && (
<Input
{...field}
type={item.sensitive ? "password" : "text"}
placeholder={getPlaceholder(item)}
autoComplete="off"
color="gray.700"
Expand Down

0 comments on commit 98db649

Please sign in to comment.