MarkPare

Results 9 comments of MarkPare

@rvillane I was just dealing with the same issue, only the `expired` event was being triggered multiple times (sometimes up to 10 times) in fast succession and consequently overloading our...

@erdii thanks for checking this out. My use case is fairly simple and I got around this issue with approach mentioned above. That said, some other folks might find a...

Also, you can't use a string representation of a number, either. So this will also break: ``` const questionId = 5; const name = questionId.toString(); render() { return } ```...

I'm running into a related issue where I have a `ScrollView` that is adjacent to (directly above) my `MentionInput`. I use `position: absolute` on `ScrollView` that encapsulates the suggestions menu,...

@wanderlust252 thanks but still not working for me :( Do you have a short code example to share with adjacent scrollviews that is working? Would be greatly appreciated; have lost...

Based on the code you shared I can't tell if the content above the `MentionInput` is scrollable. In my case, the content above is scrollable and that seems to be...

For anyone running into a similar issue, I was able to resolve this by _not_ using `position: absolute` on the suggestions menu. I didn't get complete clarity on why this...

Thanks for your help Philipp. You were definitely right that it's better not to rely on data URI's. I have a solicitation for advice on a question: I'm trying to...