|
@@ -53,10 +53,11 @@ const Operation: FC<OperationProps> = ({
|
|
|
content: messageContent,
|
|
|
annotation,
|
|
|
feedback,
|
|
|
+ adminFeedback,
|
|
|
agent_thoughts,
|
|
|
} = item
|
|
|
const hasAnnotation = !!annotation?.id
|
|
|
- const [localFeedback, setLocalFeedback] = useState(feedback)
|
|
|
+ const [localFeedback, setLocalFeedback] = useState(config?.supportAnnotation ? adminFeedback : feedback)
|
|
|
|
|
|
const content = useMemo(() => {
|
|
|
if (agent_thoughts?.length)
|