fix keyboardShouldPersistTaps in console

This commit is contained in:
Roman Volosovskyi 2017-04-25 11:48:19 +03:00
parent a9d1426426
commit c689ab2feb
1 changed files with 3 additions and 3 deletions

View File

@ -1163,11 +1163,11 @@ function jsSuggestionsContainerStyle(suggestionsCount) {
return { return {
marginVertical: 1, marginVertical: 1,
marginHorizontal: 0, marginHorizontal: 0,
keyboardShouldPersistTaps: true, keyboardShouldPersistTaps: "always",
//height: Math.min(150, (56 * suggestionsCount)), //height: Math.min(150, (56 * suggestionsCount)),
backgroundColor: "white", backgroundColor: "white",
borderRadius: 5, borderRadius: 5,
keyboardShouldPersistTaps: true keyboardShouldPersistTaps: "always"
}; };
} }
@ -1568,7 +1568,7 @@ function suggestionsContainerStyle(suggestionsCount) {
return { return {
marginVertical: 1, marginVertical: 1,
marginHorizontal: 0, marginHorizontal: 0,
keyboardShouldPersistTaps: true, keyboardShouldPersistTaps: "always",
height: Math.min(150, (56 * suggestionsCount)), height: Math.min(150, (56 * suggestionsCount)),
backgroundColor: "white", backgroundColor: "white",
borderRadius: 5, borderRadius: 5,