Fixed issue #2

This commit is contained in:
Lost Paul 2023-03-24 13:22:30 +01:00
parent 9c58ffa781
commit ad7b222733
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
{
"id": "folder-notes",
"name": "Folder notes",
"version": "1.0.3",
"version": "1.0.4",
"minAppVersion": "0.15.0",
"description": "Create notes within folders that can be accessed without collapsing the folder, similar to the functionality offered in Notion.",
"author": "Lost Paul",

View file

@ -49,7 +49,7 @@ export class Commands {
item.setTitle('Create folder note')
.setIcon('edit')
.onClick(() => {
this.plugin.createFolderNote(file.path, true);
this.plugin.createFolderNote(file.path + "/" + file.name + ".md" , true);
});
});
}