Skip to content

Commit

Permalink
Merge pull request #513 from h3poteto/iss-500
Browse files Browse the repository at this point in the history
refs #500 Rescue null account when clicking timestamp of statuses
  • Loading branch information
h3poteto authored Mar 9, 2023
2 parents 23531f4 + 2476efb commit 908153b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/timelines/status/Status.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ const Status: React.FC<Props> = props => {
<FlexboxGrid.Item colspan={6} style={{ textAlign: 'right', color: 'var(--rs-text-tertiary)' }}>
<Time
time={status.created_at}
onClick={() => props.setStatusDetail && props.setStatusDetail(props.status.id, props.server.id, props.account.id)}
onClick={() => props.setStatusDetail && props.setStatusDetail(props.status.id, props.server.id, props.account?.id)}
/>
</FlexboxGrid.Item>
</FlexboxGrid>
Expand Down

0 comments on commit 908153b

Please sign in to comment.