tangled
alpha
login
or
join now
flo-bit.dev
/
blento
your personal website on atproto - mirror
blento.app
20
fork
atom
overview
issues
pulls
pipelines
fix
Florian
1 week ago
3a7713ac
ee06bdd8
+3
-1
1 changed file
expand all
collapse all
unified
split
src
lib
cards
StandardSiteDocumentListCard
index.ts
+3
-1
src/lib/cards/StandardSiteDocumentListCard/index.ts
···
30
rkey: siteParts.rkey
31
});
32
0
0
33
publications[site] = publicationRecord.value.url as string;
34
}
35
···
39
}
40
}
41
42
-
return records;
43
},
44
45
name: 'Blog Posts',
···
30
rkey: siteParts.rkey
31
});
32
33
+
if (!publicationRecord.value) continue;
34
+
35
publications[site] = publicationRecord.value.url as string;
36
}
37
···
41
}
42
}
43
44
+
return records.filter((r) => r.value?.href);
45
},
46
47
name: 'Blog Posts',