fix(sftp): use Nuxt auto-import names SftpFileTree/SftpFileEditor

This commit is contained in:
Vantz Stockwell 2026-03-14 03:45:04 -04:00
parent aa1bbb28c4
commit a9702795a4

View File

@ -168,14 +168,14 @@ const breadcrumbs = computed(() => {
<!-- File tree area either editor or directory listing --> <!-- File tree area either editor or directory listing -->
<div class="flex-1 min-h-0 overflow-hidden"> <div class="flex-1 min-h-0 overflow-hidden">
<FileEditor <SftpFileEditor
v-if="fileContent" v-if="fileContent"
:file-path="fileContent.path" :file-path="fileContent.path"
:content="fileContent.content" :content="fileContent.content"
@save="handleSave" @save="handleSave"
@close="fileContent = null" @close="fileContent = null"
/> />
<FileTree <SftpFileTree
v-else v-else
:entries="entries" :entries="entries"
:current-path="currentPath" :current-path="currentPath"