🐛 (title) only use title notes not path

This commit is contained in:
Julien Calixte
2021-08-09 20:13:04 +02:00
parent 64e4c5b059
commit 25ad639c80
2 changed files with 7 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ import { useOverlay } from '@/hooks/useOverlay.hook'
import { useQueryStackedNotes } from '@/hooks/useQueryStackedNotes.hook'
import { resolvePath } from '@/modules/repo/services/resolvePath'
import { useUserRepoStore } from '@/modules/repo/store/userRepo.store'
import { pathToNoteTitle } from '@/utils/noteTitle'
import { pathToNotePathTitle } from '@/utils/noteTitle'
export const useNote = (containerClass: string) => {
const store = useUserRepoStore()
@@ -20,7 +20,7 @@ export const useNote = (containerClass: string) => {
}
const filePath = store.files.find((file) => file.sha === note)?.path ?? ''
obj[note] = pathToNoteTitle(filePath)
obj[note] = pathToNotePathTitle(filePath)
return obj
}, {})