about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2024-11-04 21:47:35 +0000
committerGitHub <noreply@github.com>2024-11-04 21:47:35 +0000
commitab4e36115b390cb69b2dcd31e340898afcbef22a (patch)
tree01d629d977f887c772a952310a95333466e9b455
parent86840f2785e5726c9a493124cabb0f5b5e8841e9 (diff)
downloadvoidsky-ab4e36115b390cb69b2dcd31e340898afcbef22a.tar.zst
return to using whitespace (#6109)
-rw-r--r--src/view/com/notifications/FeedItem.tsx5
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]}>&middot;</Text>
-                  <Text style={[a.ml_xs, pal.textLight]} title={niceTimestamp}>
+                  {/* make sure there's whitespace around the middot -sfn */}
+                  <Text style={[pal.textLight]}> &middot; </Text>
+                  <Text style={[pal.textLight]} title={niceTimestamp}>
                     {timeElapsed}
                   </Text>
                 </>