Fixes a search bug that wouldn't update relay filters correctly with the search terms

This commit is contained in:
Vitor Pamplona 2023-06-06 15:50:21 -04:00
parent 49c3334509
commit 50f3f7f176

View File

@ -55,6 +55,9 @@ class TypedFilter(
filter.limit?.run { filter.limit?.run {
jsonObject.addProperty("limit", filter.limit) jsonObject.addProperty("limit", filter.limit)
} }
filter.search?.run {
jsonObject.addProperty("search", filter.search)
}
return jsonObject return jsonObject
} }
} }