mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-11 20:44:32 -05:00
Open transaction date picker when clicked while it's focused (#1583)
* Open transaction date picker when clicked while it's focused * Release notes
This commit is contained in:
committed by
GitHub
parent
99dc87d715
commit
245c59e942
@@ -306,6 +306,11 @@ export default function DateSelect({
|
||||
{...inputProps}
|
||||
inputRef={inputRef}
|
||||
value={value}
|
||||
onPointerUp={e => {
|
||||
if (!embedded) {
|
||||
setOpen(true);
|
||||
}
|
||||
}}
|
||||
onKeyDown={onKeyDown}
|
||||
onChange={onChange}
|
||||
onFocus={e => {
|
||||
|
||||
6
upcoming-release-notes/1583.md
Normal file
6
upcoming-release-notes/1583.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Bugfix
|
||||
authors: [joel-jeremy]
|
||||
---
|
||||
|
||||
Fix to open transaction date picker when clicked while it's focused
|
||||
Reference in New Issue
Block a user