mirror of
https://github.com/AChep/keyguard-app.git
synced 2025-01-04 18:59:15 +01:00
fix(Export): Correctly apply item filters when you click View all items button
This commit is contained in:
parent
d03a2ad16c
commit
4dfe4fc3d2
@ -219,7 +219,12 @@ fun produceExportScreenState(
|
||||
list = state.list,
|
||||
count = state.list.size,
|
||||
onView = onClick {
|
||||
val filter = state.filterConfig?.filter
|
||||
val filter = DFilter.And(
|
||||
listOfNotNull(
|
||||
args.filter,
|
||||
state.filterConfig?.filter,
|
||||
),
|
||||
)
|
||||
val route = VaultRoute(
|
||||
args = VaultRoute.Args(
|
||||
appBar = VaultRoute.Args.AppBar(
|
||||
|
Loading…
Reference in New Issue
Block a user