diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-01-10 22:51:54 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-10 22:51:54 -0800 |
commit | ce1e6518a29392728a0418bf82d3a7b07e695a5e (patch) | |
tree | de7db4c8174912f758557731d1f089ec37233e49 | |
parent | 6ec6d522e85fc8c84bb88a7ee377fb934de83dc3 (diff) | |
download | voidsky-ce1e6518a29392728a0418bf82d3a7b07e695a5e.tar.zst |
Increase the number of lines for quote posts from 6 to 20 (#2489)
-rw-r--r-- | src/view/com/util/post-embeds/QuoteEmbed.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/util/post-embeds/QuoteEmbed.tsx b/src/view/com/util/post-embeds/QuoteEmbed.tsx index e4a091e04..e5fe44c4d 100644 --- a/src/view/com/util/post-embeds/QuoteEmbed.tsx +++ b/src/view/com/util/post-embeds/QuoteEmbed.tsx @@ -118,7 +118,7 @@ export function QuoteEmbed({ <PostAlerts moderation={moderation} style={styles.alert} /> ) : null} {!isEmpty ? ( - <Text type="post-text" style={pal.text} numberOfLines={6}> + <Text type="post-text" style={pal.text} numberOfLines={20}> {quote.text} </Text> ) : null} |