refactor(commandPanel): 移除未使用的 filterState 常量

This commit is contained in:
Oscar
2025-12-11 15:28:55 +08:00
parent 5e83a19ac5
commit 042c507127
@@ -162,16 +162,6 @@ export function useCommandFilters(commands: Ref<CommandItem[]>) {
return expandedGroups.value.has(cmd.handler_full_name);
};
// 导出过滤状态
const filterState: FilterState = {
searchQuery: searchQuery.value,
pluginFilter: pluginFilter.value,
permissionFilter: permissionFilter.value,
statusFilter: statusFilter.value,
typeFilter: typeFilter.value,
showSystemPlugins: showSystemPlugins.value
};
return {
// 状态
searchQuery,