style: update AssistantConsole layout and extend store interface

- Added height to the AssistantConsole component for improved layout consistency.
- Extended StoreNamespace interface to include 'dataCollection' for better state management.
This commit is contained in:
Marvin Zhang
2025-04-18 09:40:59 +08:00
parent 34509b8d4c
commit 32f0802f8b
2 changed files with 2 additions and 0 deletions

View File

@@ -267,6 +267,7 @@ defineOptions({ name: 'ClAssistantConsole' });
display: flex;
justify-content: space-between;
align-items: center;
height: 64px;
padding: 16px;
gap: 8px;
border-bottom: 1px solid var(--el-border-color-light);

View File

@@ -174,6 +174,7 @@ export declare global {
| 'database'
| 'dependency'
| 'environment'
| 'dataCollection'
| 'llmProvider';
type StoreNamespace = ListStoreNamespace | 'layout' | 'common';