a tool for shared writing and social publishing

pass untitiled if no draft title for search

+3 -2
+3 -2
app/lish/[did]/[publication]/dashboard/DraftList.tsx
··· 46 46 titles={{ 47 47 ...leaflets_in_publications.reduce( 48 48 (acc, leaflet) => { 49 - if (leaflet.title && leaflet.permission_tokens) 50 - acc[leaflet.permission_tokens.root_entity] = leaflet.title; 49 + if (leaflet.permission_tokens) 50 + acc[leaflet.permission_tokens.root_entity] = 51 + leaflet.title || "Untitled"; 51 52 return acc; 52 53 }, 53 54 {} as { [l: string]: string },