mirror of
https://github.com/aljazceru/goose.git
synced 2026-01-31 12:14:32 +01:00
update styling of user messages (#3247)
This commit is contained in:
@@ -1342,6 +1342,12 @@
|
||||
"envs": {
|
||||
"$ref": "#/components/schemas/Envs"
|
||||
},
|
||||
"headers": {
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"name": {
|
||||
"type": "string",
|
||||
"description": "The name used to identify this extension"
|
||||
|
||||
@@ -132,6 +132,9 @@ export type ExtensionConfig = {
|
||||
description?: string | null;
|
||||
env_keys?: Array<string>;
|
||||
envs?: Envs;
|
||||
headers?: {
|
||||
[key: string]: string;
|
||||
};
|
||||
/**
|
||||
* The name used to identify this extension
|
||||
*/
|
||||
|
||||
@@ -38,7 +38,7 @@ export default function UserMessage({ message }: UserMessageProps) {
|
||||
<div ref={contentRef}>
|
||||
<MarkdownContent
|
||||
content={displayText}
|
||||
className="text-white prose-a:text-white user-message"
|
||||
className="text-white prose-a:text-white prose-headings:text-white prose-strong:text-white prose-em:text-white user-message"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user