fix(views/table): booleans not working

This commit is contained in:
Elian Doran
2025-07-13 21:06:41 +03:00
parent 23cef0ab94
commit b93a4a3e42
2 changed files with 4 additions and 3 deletions

View File

@@ -24,8 +24,6 @@ export async function buildRowDefinitions(parentNote: FNote, notes: FNote[], inf
for (const { name, type } of infos) {
if (type === "relation") {
relations[name] = note.getRelationValue(name);
} else if (type === "boolean") {
labels[name] = note.hasLabel(name);
} else {
labels[name] = note.getLabelValue(name);
}