Skip to content

Commit

Permalink
Fixed bitwarden suggesting to create new password entries
Browse files Browse the repository at this point in the history
  • Loading branch information
Freddie Chessell committed Sep 7, 2024
1 parent 7d9af27 commit b9a8985
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export const MRT_EditCellTextField = <TData extends MRT_RowData>({
...textFieldProps.SelectProps,
}}
inputProps={{
autoComplete: 'new-password', //disable autocomplete and autofill
autoComplete: 'off',
...textFieldProps.inputProps,
}}
onBlur={handleBlur}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ export const MRT_FilterTextField = <TData extends MRT_RowData>({
) : null,
inputProps: {
'aria-label': filterPlaceholder,
autoComplete: 'new-password', // disable autocomplete and autofill
autoComplete: 'off',
disabled: !!filterChipLabel,
sx: {
textOverflow: 'ellipsis',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const MRT_GlobalFilterTextField = <TData extends MRT_RowData>({
>
<TextField
inputProps={{
autoComplete: 'new-password', // disable autocomplete and autofill
autoComplete: 'off',
...textFieldProps.inputProps,
}}
onChange={handleChange}
Expand Down

0 comments on commit b9a8985

Please sign in to comment.