mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-28 18:40:34 -05:00
Enhance PullToRefresh component to ensure full height usage on mobile devices (#5179)
This commit is contained in:
committed by
GitHub
parent
234f008dcf
commit
07904c209e
@@ -7,7 +7,7 @@ type PullToRefreshProps = ComponentProps<typeof BasePullToRefresh>;
|
||||
|
||||
export function PullToRefresh(props: PullToRefreshProps) {
|
||||
return (
|
||||
<div style={{ overflow: 'auto' }}>
|
||||
<div style={{ overflow: 'auto', flex: 1 }}>
|
||||
<BasePullToRefresh
|
||||
pullDownThreshold={80}
|
||||
resistance={2}
|
||||
|
||||
6
upcoming-release-notes/5179.md
Normal file
6
upcoming-release-notes/5179.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Bugfix
|
||||
authors: [MatissJanis]
|
||||
---
|
||||
|
||||
Fix transaction list on mobile to occupy full height even if there are not many transactions.
|
||||
Reference in New Issue
Block a user