From 1acf635baba92bd5c236821cb72b55ce05d34a48 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Sun, 19 Apr 2026 18:19:46 +0200 Subject: [PATCH] normalize Obsidian base property syntax Linter-driven: base views referenced property names with a redundant note. prefix in the order and sort arrays. The properties map still declares note., but inside order/sort the bare key is idiomatic and renders correctly. No functional change; both bases continue to filter and display as intended. Co-Authored-By: Claude Opus 4.7 (1M context) --- council-members.base | 16 +++++++--------- council-sessions.base | 14 ++++++-------- 2 files changed, 13 insertions(+), 17 deletions(-) diff --git a/council-members.base b/council-members.base index 0865234..d3a74a7 100644 --- a/council-members.base +++ b/council-members.base @@ -1,7 +1,6 @@ filters: and: - note.type == "council-member" - properties: note.name: displayName: Name @@ -13,18 +12,17 @@ properties: displayName: Votes? note.model: displayName: Model - views: - type: table name: The Council order: - - note.name - - note.prior_job - - note.lens - - note.voting - - note.model + - name + - prior_job + - lens + - voting + - model sort: - - property: note.voting + - property: voting direction: DESC - - property: note.name + - property: name direction: ASC diff --git a/council-sessions.base b/council-sessions.base index 6d657ea..05ddc75 100644 --- a/council-sessions.base +++ b/council-sessions.base @@ -1,7 +1,6 @@ filters: and: - note.type == "council-session" - properties: note.date: displayName: Date @@ -23,17 +22,16 @@ properties: displayName: Phase-3 clarif? note.tags: displayName: Tags - views: - type: table name: All sessions order: - file.name - - note.date - - note.problem - - note.winner - - note.tied - - note.tags + - date + - problem + - winner + - tied + - tags sort: - - property: note.date + - property: date direction: DESC