diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-11-04 21:47:35 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-04 21:47:35 +0000 |
commit | ab4e36115b390cb69b2dcd31e340898afcbef22a (patch) | |
tree | 01d629d977f887c772a952310a95333466e9b455 | |
parent | 86840f2785e5726c9a493124cabb0f5b5e8841e9 (diff) | |
download | voidsky-ab4e36115b390cb69b2dcd31e340898afcbef22a.tar.zst |
return to using whitespace (#6109)
-rw-r--r-- | src/view/com/notifications/FeedItem.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/view/com/notifications/FeedItem.tsx b/src/view/com/notifications/FeedItem.tsx index 1a4d7ee1d..5473fff85 100644 --- a/src/view/com/notifications/FeedItem.tsx +++ b/src/view/com/notifications/FeedItem.tsx @@ -451,8 +451,9 @@ let FeedItem = ({ <TimeElapsed timestamp={item.notification.indexedAt}> {({timeElapsed}) => ( <> - <Text style={[a.ml_xs, pal.textLight]}>·</Text> - <Text style={[a.ml_xs, pal.textLight]} title={niceTimestamp}> + {/* make sure there's whitespace around the middot -sfn */} + <Text style={[pal.textLight]}> · </Text> + <Text style={[pal.textLight]} title={niceTimestamp}> {timeElapsed} </Text> </> |