(folders) folders can start with a _

This commit is contained in:
2021-04-05 10:34:49 +02:00
parent 8370c678b9
commit 6347edd82e
3 changed files with 13 additions and 8 deletions

View File

@@ -14,7 +14,7 @@ import { defineAsyncComponent, defineComponent } from 'vue'
const FluxNote = defineAsyncComponent(() => import('@/components/FluxNote.vue'))
const DRAFT_FOLDER = 'drafts'
const DRAFT_FOLDER = ['drafts', '_drafts']
export default defineComponent({
name: 'DraftNotes',