a tool for shared writing and social publishing
0
fork

Configure Feed

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

fix date rewrite when toggling all day

+2 -1
+2 -1
components/Blocks/DateTimeBlock.tsx
··· 200 200 entity: props.entityID, 201 201 data: { 202 202 type: "date-time", 203 - value: new Date().toISOString(), 203 + value: dateFact?.data.value || new Date().toISOString(), 204 204 originalTimezone: 205 + dateFact?.data.originalTimezone || 205 206 Intl.DateTimeFormat().resolvedOptions().timeZone, 206 207 dateOnly: e.currentTarget.checked, 207 208 },