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
To anyone reaching this discussion after finding this "bug", the issue comes from the styiling.
Take this example as reference https://github.com/signavio/react-mentions/blob/master/demo/src/examples/Scrollable.js
you need to add the input and highlighter style to the mentionsInput component
input: {
overflow: 'auto',
height: 70,
},
highlighter: {
boxSizing: 'border-box',
overflow: 'hidden',
height: 70,
},
in this particular case it is the highlighter style that removes the sticky bad beaviour.
Steps to reproduce:
Expected behavior:
Highlight will disappear while scrolling
Observed behaviour:
Highlight is stuck on screen
Workaround:
none
The text was updated successfully, but these errors were encountered: