Use unicode for folder supported by mobile devices

This commit is contained in:
Simon Clement 2022-09-25 12:27:09 +03:00
parent 47d538ce35
commit bd752dac11

View file

@ -16,7 +16,7 @@ export class FolderSuggestion implements ISuggestion{
render(el: HTMLElement): void {
SuggestionRenderer.RenderSuggestion(el, {
content: `🗀 ${this.folderPath.Title}`,
content: `📁 ${this.folderPath.Title}`,
note: this.folderPath.VaultPath,
})
}