about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-09-28 10:32:34 -0700
committerPaul Frazee <pfrazee@gmail.com>2023-09-28 10:32:34 -0700
commitd57c8f7bca2afdac526fdd4ada4a297908ed02e9 (patch)
tree651fce470df7984c91d49963ec2b1e966bb6a9f3 /src
parent1aa1b69a94d3a88497c3f812b1a2d70c0e389775 (diff)
downloadvoidsky-d57c8f7bca2afdac526fdd4ada4a297908ed02e9.tar.zst
Fix pointer
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,