diff options
author | Eric Bailey <git@esb.lol> | 2023-08-28 20:41:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-28 18:41:28 -0700 |
commit | 1c460c40f44b55f07c335b0065321ffb436c172d (patch) | |
tree | be8ae2ac8171f16166013273acad05286402dcde /src/view/com/post/Post.tsx | |
parent | cc2838761b214c436e1f854e951f587cc1aba3d2 (diff) | |
download | voidsky-1c460c40f44b55f07c335b0065321ffb436c172d.tar.zst |
Make posts behave more like links (#1316)
* use cursor for post cards * ignore type error * handle meta keys on non native links (cherry picked from commit daccafea0b7ab21af6572767e496d20f32ead353) * remove cursor on non-post notifications, not quite right * Simplify link handling --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
Diffstat (limited to 'src/view/com/post/Post.tsx')
-rw-r--r-- | src/view/com/post/Post.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx index 94dfe6e8b..661b3a899 100644 --- a/src/view/com/post/Post.tsx +++ b/src/view/com/post/Post.tsx @@ -304,6 +304,7 @@ const styles = StyleSheet.create({ paddingBottom: 5, paddingLeft: 10, borderTopWidth: 1, + cursor: 'pointer', }, layout: { flexDirection: 'row', |