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
{{ message }}
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
I am having an issue with the callback function. I have trigger={'#'} so when I type # then it does show me the suggestions. However, suggestions does not get updated with matching suggestions when I continue typing.
Below is the example of what I mean
Here is my code for MentionsTextInput:
Here is my callback function:
I am actually importing sample hashTag data from local json file through import * as hashTagData from '../data/sampleHashTagData.json';
And in the componentDidMount(), I am setting that data to the state: componentDidMount() { this.setState({ hashTags: hashTagData.results, }); }
Could you anyone please help me solve this issue?
The text was updated successfully, but these errors were encountered:
Hello,
I am having an issue with the callback function. I have
trigger={'#'}
so when I type # then it does show me the suggestions. However, suggestions does not get updated with matching suggestions when I continue typing.Below is the example of what I mean
Here is my code for
![image](https://user-images.githubusercontent.com/18387214/47970908-738afd80-e059-11e8-8a81-c965b30f49c6.png)
MentionsTextInput
:Here is my callback function:
![image](https://user-images.githubusercontent.com/18387214/47970915-8dc4db80-e059-11e8-8518-6b7d8f4c666c.png)
I am actually importing sample hashTag data from local json file through
import * as hashTagData from '../data/sampleHashTagData.json';
And in the
componentDidMount()
, I am setting that data to the state:componentDidMount() { this.setState({ hashTags: hashTagData.results, }); }
Could you anyone please help me solve this issue?
The text was updated successfully, but these errors were encountered: