mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-30 12:40:44 +00:00
feat: Add user feedback dialog
This commit is contained in:
parent
886f914fb3
commit
f7585153b7
15 changed files with 331 additions and 2 deletions
|
|
@ -35,6 +35,7 @@ import { ModelSwitchDialog } from './ModelSwitchDialog.js';
|
|||
import { AgentCreationWizard } from './subagents/create/AgentCreationWizard.js';
|
||||
import { AgentsManagerDialog } from './subagents/manage/AgentsManagerDialog.js';
|
||||
import { SessionPicker } from './SessionPicker.js';
|
||||
import { FeedbackDialog } from '../FeedbackDialog.js';
|
||||
|
||||
interface DialogManagerProps {
|
||||
addItem: UseHistoryManagerReturn['addItem'];
|
||||
|
|
@ -291,5 +292,9 @@ export const DialogManager = ({
|
|||
);
|
||||
}
|
||||
|
||||
if (uiState.isFeedbackDialogOpen) {
|
||||
return <FeedbackDialog />;
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue