From 093dfb3a1b302e037351afbd4675666d16527004 Mon Sep 17 00:00:00 2001 From: shall0pass <20625555+shall0pass@users.noreply.github.com> Date: Mon, 23 Jan 2023 13:11:02 -0600 Subject: [PATCH] opens the category/payee/account lists on focus (#571) --- packages/desktop-client/src/components/util/GenericInput.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/desktop-client/src/components/util/GenericInput.js b/packages/desktop-client/src/components/util/GenericInput.js index 1d5bd0e95..083d53def 100644 --- a/packages/desktop-client/src/components/util/GenericInput.js +++ b/packages/desktop-client/src/components/util/GenericInput.js @@ -51,7 +51,7 @@ export default function GenericInput({ accounts={accounts} multi={multi} showMakeTransfer={false} - openOnFocus={false} + openOnFocus={true} value={value} onSelect={onChange} inputProps={{ @@ -69,7 +69,7 @@ export default function GenericInput({ accounts={accounts} value={value} multi={multi} - openOnFocus={false} + openOnFocus={true} onSelect={onChange} inputProps={{ inputRef, @@ -85,7 +85,7 @@ export default function GenericInput({ categoryGroups={categoryGroups} value={value} multi={multi} - openOnFocus={false} + openOnFocus={true} onSelect={onChange} inputProps={{ inputRef, -- GitLab