Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit d9200a8

Browse files
committed
regresion but with logs of one of the issues
1 parent e613089 commit d9200a8

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

manifest-beta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "dbfolder",
33
"name": "DB Folder",
4-
"version": "2.6.0",
4+
"version": "2.6.1",
55
"minAppVersion": "0.15.9",
66
"description": "Folder with the capability to store and retrieve data from a folder like database",
77
"author": "RafaelGB",

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "dbfolder",
33
"name": "DB Folder",
4-
"version": "2.6.0",
4+
"version": "2.6.1",
55
"minAppVersion": "0.15.9",
66
"description": "Folder with the capability to store and retrieve data from a folder like database",
77
"author": "RafaelGB",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-dbfolder",
3-
"version": "2.6.0",
3+
"version": "2.6.1",
44
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
55
"main": "main.js",
66
"scripts": {

src/settings/handlers/automation/FormulaJSFolderHandler.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ export class FormulaJSFolderHandler extends AbstractSettingsHandler {
2121
}
2222

2323
};
24-
console.log('FormulaJSFolderHandler bejore');
2524
// render dropdown inside container
2625
new Setting(containerEl)
2726
.setName('Select the formula JS folder')
@@ -34,8 +33,6 @@ export class FormulaJSFolderHandler extends AbstractSettingsHandler {
3433
.setValue(local ? view.diskConfig.yaml.config.formula_folder_path : settingsManager.plugin.settings.local_settings.formula_folder_path)
3534
.onChange(formula_folder_promise);
3635
});
37-
38-
console.log('FormulaJSFolderHandler after');
3936
return this.goNext(settingHandlerResponse);
4037
}
4138
}

0 commit comments

Comments
 (0)