Fixed issue with Notification status url 'to' value

• Fixed:
- issue with Notification status url 'to' value
This commit is contained in:
Developer 2021-02-28 19:24:42 -05:00
parent 0839160efd
commit ea3e126579

@ -93,8 +93,8 @@ class Notification extends ImmutablePureComponent {
)
}
const DateWrapperContainer = !!status ? NavLink : Dummy
const statusUrl = !!status ? status.get('uri') : '/'
const DateWrapperContainer = !!status && !!statusUrl ? NavLink : Dummy
const containerClasses = CX({
d: 1,
@ -147,20 +147,17 @@ class Notification extends ImmutablePureComponent {
{' '}
{message}
</Text>
{
!!statusUrl &&
<React.Fragment>
<DotTextSeperator />
<DateWrapperContainer
to={statusUrl}
className={[_s.noUnderline, _s.text].join(' ')}
>
<Text size='small' color='tertiary' className={_s.ml5}>
<RelativeTimestamp timestamp={createdAt} />
</Text>
</DateWrapperContainer>
</React.Fragment>
}
<React.Fragment>
<DotTextSeperator />
<DateWrapperContainer
to={statusUrl}
className={[_s.noUnderline, _s.text].join(' ')}
>
<Text size='small' color='tertiary' className={_s.ml5}>
<RelativeTimestamp timestamp={createdAt} />
</Text>
</DateWrapperContainer>
</React.Fragment>
</div>
</div>
{