mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-28 18:40:34 -05:00
Explicitly disable 1Password on table inputs (#3674)
* Explicitly disable 1Password on table inputs * Add release notes * Update packages/desktop-client/src/components/autocomplete/Autocomplete.tsx Co-authored-by: Matt Fiddaman <github@m.fiddaman.uk> --------- Co-authored-by: Matt Fiddaman <github@m.fiddaman.uk>
This commit is contained in:
committed by
GitHub
parent
3d9e90f797
commit
1a13e98f49
@@ -139,7 +139,8 @@ function fireUpdate<T extends Item>(
|
||||
}
|
||||
|
||||
function defaultRenderInput(props: ComponentProps<typeof Input>) {
|
||||
return <Input {...props} />;
|
||||
// data-1p-ignore disables 1Password autofill behaviour
|
||||
return <Input data-1p-ignore {...props} />;
|
||||
}
|
||||
|
||||
function defaultRenderItems<T extends Item>(
|
||||
|
||||
6
upcoming-release-notes/3674.md
Normal file
6
upcoming-release-notes/3674.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Bugfix
|
||||
authors: [greggroth]
|
||||
---
|
||||
|
||||
Fixes 1Password credit card autocomplete showing on the transactions table
|
||||
Reference in New Issue
Block a user