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 -->
<div class="flex-1 min-h-0 overflow-hidden">
<FileEditor
<SftpFileEditor
v-if="fileContent"
:file-path="fileContent.path"
:content="fileContent.content"
@save="handleSave"
@close="fileContent = null"
/>
<FileTree
<SftpFileTree
v-else
:entries="entries"
:current-path="currentPath"