From 60759183948b37c864743c3dbbb5a03180da5c4f Mon Sep 17 00:00:00 2001 From: Garrett Swann Date: Thu, 18 Jun 2026 22:13:04 -0700 Subject: [PATCH] feature: Allow for [[#]]/[[]] in dataview queries. --- main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.ts b/main.ts index 814aa08..1712024 100644 --- a/main.ts +++ b/main.ts @@ -2722,7 +2722,7 @@ export default class VirtualFooterPlugin extends Plugin { } // Execute the query against the active file - const results = await dataviewApi.query(query); + const results = await dataviewApi.query(query, file.path); // Dataview API returns a Success object with a 'successful' flag and 'value' property if (!results || !results.successful || !results.value || !Array.isArray(results.value.values)) {