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
28
pulls
pipelines
copy fixes
cozylittle.house
1 month ago
3a8a45d1
f79adca6
+6
-13
2 changed files
expand all
collapse all
unified
split
app
lish
[did]
[publication]
[rkey]
Interactions
Interactions.tsx
components
RecommendButton.tsx
+5
-12
app/lish/[did]/[publication]/[rkey]/Interactions/Interactions.tsx
···
180
180
181
181
{tagCount > 0 && (
182
182
<>
183
183
-
interactionsAvailable && <Separator classname="h-4!" />
183
183
+
{interactionsAvailable && <Separator classname="h-4!" />}
184
184
<TagPopover tags={tags} tagCount={tagCount} />
185
185
</>
186
186
)}
···
272
272
aria-label="Post quotes"
273
273
>
274
274
<QuoteTiny aria-hidden /> {props.quotesCount}
275
275
-
{props.quotesCount > 0 && (
276
276
-
<>
277
277
-
{props.quotesCount}
278
278
-
<Separator classname="h-4! text-accent-contrast!" />
279
279
-
</>
280
280
-
)}
281
281
-
Mention
282
282
-
<span
283
283
-
aria-hidden
284
284
-
>{`Mention${props.quotesCount === 1 ? "" : "s"}`}</span>
275
275
+
{props.quotesCount}
276
276
+
<Separator classname="h-4! text-accent-contrast!" />
277
277
+
Mention{props.quotesCount > 1 ? "" : "s"}
285
278
</ButtonSecondary>
286
279
)}
287
280
{!props.showComments ? null : (
···
309
302
<Separator classname="h-4! text-accent-contrast!" />
310
303
</>
311
304
)}
312
312
-
Comment
305
305
+
Comment{props.commentsCount > 1 ? "" : "s"}
313
306
</ButtonSecondary>
314
307
)}
315
308
</div>
+1
-1
components/RecommendButton.tsx
···
87
87
x: e.clientX,
88
88
y: e.clientY - 16,
89
89
},
90
90
-
text: <div className="text-xs">thanks!</div>,
90
90
+
text: <div className="text-xs">recc'd!</div>,
91
91
});
92
92
}
93
93