From 4c8844ff86f5ec13c4f76418104144b2f948b66c Mon Sep 17 00:00:00 2001 From: Marek Lenczewski Date: Sat, 25 Apr 2026 05:15:08 +0200 Subject: [PATCH] update --- main.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.js b/main.js index 44b4a4d..63234ac 100644 --- a/main.js +++ b/main.js @@ -1847,8 +1847,8 @@ var GridView = class extends import_obsidian7.ItemView { } try { await this.app.vault.createFolder(folderPath); - await this.app.vault.create(`${folderPath}/features.md`, ""); - await this.app.vault.create(`${folderPath}/specs.md`, ""); + await this.app.vault.create(`${folderPath}/data.md`, ""); + await this.app.vault.create(`${folderPath}/detail.md`, ""); this.render(); } catch (error) { console.error( @@ -1867,7 +1867,7 @@ var GridView = class extends import_obsidian7.ItemView { }); addFeatureFilesButton.addEventListener("click", async () => { const basePath = this.sourcePath === "/" ? "" : this.sourcePath; - const filenames = ["features.md", "specs.md"]; + const filenames = ["data.md", "detail.md"]; try { for (const filename of filenames) { const filePath = basePath ? `${basePath}/${filename}` : filename;