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
fix type error
awarm.space
1 week ago
b530c541
289d915b
+4
-3
1 changed file
expand all
collapse all
unified
split
app
lish
[did]
[publication]
[rkey]
PostContent.tsx
+4
-3
app/lish/[did]/[publication]/[rkey]/PostContent.tsx
···
240
240
);
241
241
}
242
242
case PubLeafletBlocksOrderedList.isMain(b.block): {
243
243
+
let block = b.block;
243
244
return (
244
244
-
<ol className="-ml-px sm:ml-[9px] pb-2" start={b.block.startIndex || 1}>
245
245
-
{b.block.children.map((child, i) => (
245
245
+
<ol className="-ml-px sm:ml-[9px] pb-2" start={block.startIndex || 1}>
246
246
+
{block.children.map((child, i) => (
246
247
<OrderedListItem
247
248
pollData={pollData}
248
249
pages={pages}
···
253
254
key={i}
254
255
className={className}
255
256
pageId={pageId}
256
256
-
startIndex={b.block.startIndex || 1}
257
257
+
startIndex={block.startIndex || 1}
257
258
/>
258
259
))}
259
260
</ol>