Prune deleted folders off of breadcrumbs' longest visited (keeps current folder even if missing).
This commit is contained in:
5
frontend/src/utils/fileutil.ts
Normal file
5
frontend/src/utils/fileutil.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { useMainStore } from '@/stores/main'
|
||||
|
||||
const store = useMainStore()
|
||||
|
||||
export const exists = (path: string[]) => store.document.some(doc => (doc.loc ? `${doc.loc}/${doc.name}` : doc.name) === path.join('/'))
|
||||
Reference in New Issue
Block a user