-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Notifications in NotificationFeed not rendering #117
Comments
I can see on the demos the activities in the response have data under the Is there something wrong with how I'm adding activities to the notification feed? |
@justin-snap I think the way you're adding activities is wrong, because it's a reference to an object we need to enrich you'll need to specify the collection as well. In this case the so this would be something like this:
|
Im trying to make the example project to work, but notificationdropdown doesnt open the popup window. The api request seems to work and the number in the badge disappear, but the window is not showing. Some idea about it?
` |
I found out that problem! Its react version.. are u guys going to fix it to work with react ^17.0.0? |
I'm also running into this. Can you provide some detail on where the problem is, so maybe i could bypass it locally somehow? |
Their support team still hasn't been able to figure this out for me |
I'm also seeing this issue, specifically with the |
I was able to workaround the issue by modifying the default Group prop <NotificationDropdown
notify
feedGroup="notification"
Group={(props) => {
console.log(props);
return <div>im a group</div>;
}}
/> The issue seems to lie with how |
Having the same issue |
This will work |
Does not work for me. Running Next w/ React17 and im unable to get the component to render. It shows when new notifications are available, but you are unable to see once selecting it.
|
I'm seeing this issue crop back up again myself. |
Old workaround ain't cutting it anymore. |
I'm pretty new to this package but I'll dive in today after work to see what I can find. I wonder if it anyone w/ React 17 has this working for them at all. |
@Rykuno
if you get |
Trying to render out the NotificationFeed on my frontend. It is making the call to the stream api to get activities, however it's not rendering any of them.
On backend I am using the
stream-php
library adding activities that look like so:10 and 11 being the user_id's of properly initialized users
Response given from the NotificationFeed component fetching
/enrich/feed/notification/10/
I get the
notify
alert when a new activity is added, but none of theNotification
components are being renderedThe text was updated successfully, but these errors were encountered: