diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-12-20 20:37:55 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-20 20:37:55 +0000 |
commit | c5421596a8d449525a0436c6d686bb9c90bedffa (patch) | |
tree | 090740d2f04b7e584c683f1320e20904b7ee3f36 /src | |
parent | 8f7a6e5ffc41b5b77dc69289b27d649eb2f4150d (diff) | |
download | voidsky-c5421596a8d449525a0436c6d686bb9c90bedffa.tar.zst |
fix recent searches tap handling (#7214)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/screens/Search/Search.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/screens/Search/Search.tsx b/src/view/screens/Search/Search.tsx index cf00ee2bf..71e4c0109 100644 --- a/src/view/screens/Search/Search.tsx +++ b/src/view/screens/Search/Search.tsx @@ -1025,7 +1025,9 @@ function SearchHistory({ const {_} = useLingui() return ( - <Layout.Content> + <Layout.Content + keyboardDismissMode="interactive" + keyboardShouldPersistTaps="handled"> <View style={styles.searchHistoryContainer}> {(searchHistory.length > 0 || selectedProfiles.length > 0) && ( <Text style={[pal.text, styles.searchHistoryTitle]}> |