diff options
author | Ivan Chen <ivan@tagg.id> | 2021-05-10 16:37:11 -0400 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-05-10 16:50:42 -0400 |
commit | c3f7b66e4941d3bc0a0406e46f3b8fce5e01329e (patch) | |
tree | aefb24f10c5e213bd74f14682b7aff5850d58af0 /src/components/comments/CommentTile.tsx | |
parent | 0b338e0c243c63fc836c7a9829ef3787045bc034 (diff) |
finished likes screen
Diffstat (limited to 'src/components/comments/CommentTile.tsx')
-rw-r--r-- | src/components/comments/CommentTile.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/comments/CommentTile.tsx b/src/components/comments/CommentTile.tsx index 688a16e6..e3364007 100644 --- a/src/components/comments/CommentTile.tsx +++ b/src/components/comments/CommentTile.tsx @@ -171,6 +171,7 @@ const CommentTile: React.FC<CommentTileProps> = ({ <View style={styles.row}> <TouchableOpacity style={styles.row} + disabled={commentObject.reaction_count === 0} onPress={() => { navigation.navigate('CommentReactionScreen', { comment: commentObject, |