about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/view/com/notifications/FeedItem.tsx8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/view/com/notifications/FeedItem.tsx b/src/view/com/notifications/FeedItem.tsx
index ff5ec9f50..c51335c72 100644
--- a/src/view/com/notifications/FeedItem.tsx
+++ b/src/view/com/notifications/FeedItem.tsx
@@ -241,7 +241,9 @@ export const FeedItem = observer(function FeedItemImpl({
             <Text style={[pal.text]}> {action}</Text>
             <TimeElapsed timestamp={item.indexedAt}>
               {({timeElapsed}) => (
-                <Text style={[pal.textLight]} title={niceDate(item.indexedAt)}>
+                <Text
+                  style={[pal.textLight, styles.pointer]}
+                  title={niceDate(item.indexedAt)}>
                   {' ' + timeElapsed}
                 </Text>
               )}
@@ -448,6 +450,10 @@ const styles = StyleSheet.create({
   overflowHidden: {
     overflow: 'hidden',
   },
+  pointer: {
+    // @ts-ignore web only
+    cursor: 'pointer',
+  },
 
   outer: {
     padding: 10,