Support not-present relationships

This commit is contained in:
2025-10-11 13:47:58 -07:00
parent c0638e34a8
commit 64aaad69d7
3 changed files with 44 additions and 5 deletions

View File

@@ -30,6 +30,9 @@ export function DocumentView({
if (v.type === "ready") {
return v.value.secondary.length.toString();
}
if (v.type === "empty") {
return "0";
}
return "...";
});