fix keyboardShouldPersistTaps in console
This commit is contained in:
parent
a9d1426426
commit
c689ab2feb
|
@ -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,
|
||||||
|
|
Loading…
Reference in New Issue