this repo has no description
0
fork

Configure Feed

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

Fix exporter

uwx 039dcfab 32779f90

+2 -2
+2 -2
public/exporter.ts
··· 194 194 195 195 // Drawcall for title 196 196 if (fields.length < 2) { 197 - column.height += simpleTitleHeight; 198 197 /** @type {SimpleTitleDrawCall} */ 199 198 const drawCall: SimpleTitleDrawCall = { x: NaN, y: column.height, type: 'simpleTitle', data: catName }; 200 199 column.drawStack.push(drawCall); 200 + column.height += simpleTitleHeight; 201 201 } else { 202 - column.height += titleSubtitleHeight; 203 202 /** @type {TitleSubtitleDrawCall} */ 204 203 const drawCall: TitleSubtitleDrawCall = { x: NaN, y: column.height, type: 'titleSubtitle', data: { category: catName, fields: fields } }; 205 204 column.drawStack.push(drawCall); 205 + column.height += titleSubtitleHeight; 206 206 } 207 207 208 208 // Drawcalls for kinks