Remove unused code (#1136)

This commit is contained in:
Chenlei Hu
2024-10-06 16:22:48 -04:00
committed by GitHub
parent 7f2920644e
commit defacf3398

View File

@@ -7,7 +7,6 @@
<SearchBox
class="model-lib-search-box mx-4 mt-4"
v-model:modelValue="searchQuery"
@search="handleSearch"
:placeholder="$t('searchModels') + '...'"
/>
</div>
@@ -187,10 +186,6 @@ const renderedRoot = computed<TreeExplorerNode<ComfyModelDef>>(() => {
return fillNodeInfo(root.value)
})
const handleSearch = (query: string) => {
// TODO
}
const handleNodeClick = (
node: RenderedTreeExplorerNode<ComfyModelDef>,
e: MouseEvent