diff --git a/src/notifications/components/NotificationsList/NotificationsList.js b/src/notifications/components/NotificationsList/NotificationsList.js index 64b7b81e5d025c736ee82eabd08940dc9a4af676..53e4bec5104b113e039489a3874ba31f9adcfec9 100644 --- a/src/notifications/components/NotificationsList/NotificationsList.js +++ b/src/notifications/components/NotificationsList/NotificationsList.js @@ -52,7 +52,25 @@ const NotificationsList = props => { }, [notification]); if (notifications.length === 0) { - return <p>The are no notifications in this channel</p>; + return ( + <Grid padded> + <Grid.Row centered> + <p>The are no notifications in this channel</p>; + </Grid.Row> + {archive && ( + <Grid.Row centered> + <Icon name="archive" color="blue" /> + <a + href={`${process.env.REACT_APP_ARCHIVE_URL}/data/${channelId}`} + target="_blank" + rel="noopener noreferrer" + > + Notifications's Archive + </a> + </Grid.Row> + )} + </Grid> + ) } return (