diff --git a/ui/src/components/common-list/index.vue b/ui/src/components/common-list/index.vue index 3e0c59aca..28e16500f 100644 --- a/ui/src/components/common-list/index.vue +++ b/ui/src/components/common-list/index.vue @@ -77,6 +77,7 @@ defineExpose({ font-size: 14px; margin-bottom: 4px; &.active { + background: var(--el-color-primary-light-9); border-radius: 4px; color: var(--el-color-primary); font-weight: 500; diff --git a/ui/src/components/index.ts b/ui/src/components/index.ts index 83400e8d0..931fef593 100644 --- a/ui/src/components/index.ts +++ b/ui/src/components/index.ts @@ -23,6 +23,8 @@ import TagEllipsis from './tag-ellipsis/index.vue' import CardCheckbox from './card-checkbox/index.vue' import AiChat from './ai-chat/index.vue' import KnowledgeIcon from './app-icon/KnowledgeIcon.vue' +import TagGroup from './tag-group/index.vue' +import WorkspaceDropdown from './workspace-dropdown/index.vue' export default { install(app: App) { app.component('LogoFull', LogoFull) @@ -49,5 +51,7 @@ export default { app.component('CardCheckbox', CardCheckbox) app.component('AiChat', AiChat) app.component('KnowledgeIcon', KnowledgeIcon) + app.component('TagGroup', TagGroup) + app.component('WorkspaceDropdown', WorkspaceDropdown) }, } diff --git a/ui/src/components/tag-group/index.vue b/ui/src/components/tag-group/index.vue index 195742a2f..784d297f6 100644 --- a/ui/src/components/tag-group/index.vue +++ b/ui/src/components/tag-group/index.vue @@ -1,10 +1,10 @@