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

Commit 28f7996

Browse files
committed
fix incorrect tags format
1 parent 5a1a107 commit 28f7996

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/FileManagerService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class VaultManager {
3636
// Custom content by source
3737
switch (localSettings.source_data) {
3838
case SourceDataTypes.TAG:
39-
content = content.concat(`#${localSettings.source_form_result}\n`);
39+
content = content.concat(`${localSettings.source_form_result}\n`);
4040
break;
4141
default:
4242
}

0 commit comments

Comments
 (0)