You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Resize Web Chat window to be as narrow as possible without clipping
Click on microphone button
Say a very long sentence, like, "A quick brown fox jumped over the lazy dogs"
Expected: when the intermediate result is shown, Web Chat should keep the latest words on the screen by scrolling right
Actual: we only show the first few words, clipped everything else
Investigations:
We move caret with selectionStart = selectionEnd = value.length
This only works when the send box is focused
UX-wise, we stop listening when the send box is focused
When speech start, turn into a single-line
Change the parent to be scrollable, and auto-scroll to far right
I think a better solution is provide multi-line support.
The text was updated successfully, but these errors were encountered:
compulim
added
the
bug
Indicates an unexpected problem or an unintended behavior.
label
May 3, 2018
Repro steps:
Expected: when the intermediate result is shown, Web Chat should keep the latest words on the screen by scrolling right
Actual: we only show the first few words, clipped everything else
Investigations:
selectionStart = selectionEnd = value.length
I think a better solution is provide multi-line support.
The text was updated successfully, but these errors were encountered: