Filtering missing items in summary actor details.

This commit is contained in:
DebaucheryLibrarian 2025-11-18 02:17:54 +01:00
parent c530751a70
commit e9e0cf3600
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ const propProcessors = {
})
.join(parentDetail.delimiter ?? ' ');
if (parentDetail.wrap) {
if (curatedDetails && parentDetail.wrap) {
return `${parentDetail.wrap[0]}${curatedDetails}${parentDetail.wrap[1]}`;
}