fix: 修复管理端前端类型校验问题

- 修正知识库与 Bot 设置页相关组件的类型定义和空值处理

- 补齐工作流与公开聊天页的前端类型约束和动态导入类型

- 收敛本次改动文件的局部格式与样式规范,确保 pnpm check:type 通过
This commit is contained in:
2026-04-05 20:36:25 +08:00
parent b5dd427920
commit bb72e19c84
15 changed files with 361 additions and 244 deletions

View File

@@ -96,26 +96,27 @@ const handleSearch = () => {
<style scoped>
.search-container {
width: 100%;
height: 100%;
padding: 0 0 20px 0;
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
padding: 0 0 20px;
}
.search-input {
display: flex;
gap: 12px;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.retrieval-select {
width: 180px;
flex-shrink: 0;
width: 180px;
}
.search-result {
padding-top: 20px;
flex: 1;
padding-top: 20px;
}
</style>