tangled
alpha
login
or
join now
leaflet.pub
/
leaflet
289
fork
atom
a tool for shared writing and social publishing
289
fork
atom
overview
issues
27
pulls
pipelines
oops fix showing quotes on interaction preview
cozylittle.house
1 month ago
2c068aca
0920f639
+2
-2
1 changed file
expand all
collapse all
unified
split
components
InteractionsPreview.tsx
+2
-2
components/InteractionsPreview.tsx
···
38
38
</>
39
39
)}
40
40
41
41
-
{props.showMentions || props.quotesCount === 0 ? null : (
41
41
+
{!props.showMentions || props.quotesCount === 0 ? null : (
42
42
<SpeedyLink
43
43
aria-label="Post quotes"
44
44
href={`${props.postUrl}?interactionDrawer=quotes`}
···
47
47
<QuoteTiny /> {props.quotesCount}
48
48
</SpeedyLink>
49
49
)}
50
50
-
{props.showComments === false || props.commentsCount === 0 ? null : (
50
50
+
{!props.showComments || props.commentsCount === 0 ? null : (
51
51
<SpeedyLink
52
52
aria-label="Post comments"
53
53
href={`${props.postUrl}?interactionDrawer=comments`}