mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? feat: Send message with uuid #2088 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -77,11 +77,16 @@ export const AssistantGroupButton = ({
|
||||
);
|
||||
};
|
||||
|
||||
export const UserGroupButton = () => {
|
||||
interface UserGroupButtonProps {
|
||||
messageId: string;
|
||||
content: string;
|
||||
}
|
||||
|
||||
export const UserGroupButton = ({ content }: UserGroupButtonProps) => {
|
||||
return (
|
||||
<Radio.Group size="small">
|
||||
<Radio.Button value="a">
|
||||
<CopyToClipboard text="xxx"></CopyToClipboard>
|
||||
<CopyToClipboard text={content}></CopyToClipboard>
|
||||
</Radio.Button>
|
||||
<Radio.Button value="b">
|
||||
<SyncOutlined />
|
||||
|
||||
Reference in New Issue
Block a user