Skip to content

Commit 385f9bb

Browse files
authored
[ENG-516, ENG-515] Change Defaults for showIdsInFrontmatter and folderPath (#243)
* Update DEFAULT_SETTINGS: set showIdsInFrontmatter to false and clear nodesFolderPath * Update placeholder text in FolderSuggestInput for clarity
1 parent 12b2190 commit 385f9bb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/obsidian/src/components/GeneralSettings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ const GeneralSettings = () => {
123123
<FolderSuggestInput
124124
value={nodesFolderPath}
125125
onChange={handleFolderPathChange}
126-
placeholder="Discourse Nodes"
126+
placeholder="Example: folder 1/folder"
127127
/>
128128
</div>
129129
</div>

apps/obsidian/src/constants.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,6 @@ export const DEFAULT_SETTINGS: Settings = {
5656
relationshipTypeId: DEFAULT_RELATION_TYPES.opposes!.id,
5757
},
5858
],
59-
showIdsInFrontmatter: true,
60-
nodesFolderPath: "Discourse Nodes",
59+
showIdsInFrontmatter: false,
60+
nodesFolderPath: "",
6161
};

0 commit comments

Comments
 (0)