atmosphere explorer
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix undefined og card

Juliet 2d0b4327 3b92a93b

+5 -1
+5 -1
src/worker.js
··· 190 190 { style: { display: "flex", overflow: "hidden", whiteSpace: "nowrap" } }, 191 191 ...guides, 192 192 ...line.segments.map((seg) => 193 - h("div", { style: { color: seg.color, marginRight: seg.mr ?? 0, flexShrink: seg.mr ? 0 : undefined } }, seg.text), 193 + h( 194 + "div", 195 + { style: { color: seg.color, ...(seg.mr ? { marginRight: seg.mr } : {}) } }, 196 + seg.text, 197 + ), 194 198 ), 195 199 ); 196 200 }