diff options
Diffstat (limited to 'src/view/com/util/post-ctrls/RepostButton.web.tsx')
-rw-r--r-- | src/view/com/util/post-ctrls/RepostButton.web.tsx | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/src/view/com/util/post-ctrls/RepostButton.web.tsx b/src/view/com/util/post-ctrls/RepostButton.web.tsx index 329382132..a888178a3 100644 --- a/src/view/com/util/post-ctrls/RepostButton.web.tsx +++ b/src/view/com/util/post-ctrls/RepostButton.web.tsx @@ -69,19 +69,18 @@ export const RepostButton = ({ const inner = ( <View style={[ - styles.control, - !big && styles.controlPad, + styles.container, (isReposted ? styles.reposted : defaultControlColor) as StyleProp<ViewStyle>, ]}> <RepostIcon strokeWidth={2.2} size={big ? 24 : 20} /> - {typeof repostCount !== 'undefined' ? ( + {typeof repostCount !== 'undefined' && repostCount > 0 ? ( <Text testID="repostCount" type={isReposted ? 'md-bold' : 'md'} style={styles.repostCount}> - {repostCount ?? 0} + {repostCount} </Text> ) : undefined} </View> @@ -110,15 +109,11 @@ export const RepostButton = ({ } const styles = StyleSheet.create({ - control: { - display: 'flex', + container: { flexDirection: 'row', alignItems: 'center', gap: 4, }, - controlPad: { - padding: 5, - }, reposted: { color: colors.green3, }, |