Skip to content

Commit e71dbd3

Browse files
cnjackclaude
andcommitted
fix(web): import Listbox + ChevronUpDownIcon in RemoteConnectWizard
The SSH config step's saved-alias dropdown used Listbox/ListboxButton/ ListboxOptions/ListboxOption and ChevronUpDownIcon without importing them, so when any SSH alias existed (aliases.length > 0) the config form failed to render (blank step 2). strictTemplates is off, so type-check/build didn't catch the unresolved components. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 65ac31d commit e71dbd3

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

web/src/components/RemoteConnectWizard.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ import {
55
DialogPanel,
66
TransitionRoot,
77
TransitionChild,
8+
Listbox,
9+
ListboxButton,
10+
ListboxOptions,
11+
ListboxOption,
812
} from '@headlessui/vue'
913
import {
1014
ServerIcon,
@@ -15,6 +19,7 @@ import {
1519
ArrowPathIcon,
1620
CheckIcon,
1721
ChevronRightIcon,
22+
ChevronUpDownIcon,
1823
} from '@heroicons/vue/24/outline'
1924
import { useI18n } from 'vue-i18n'
2025
import { useChatStore } from '@/stores/chat'

0 commit comments

Comments
 (0)