update styling of user messages (#3247)
This commit is contained in:
@@ -1342,6 +1342,12 @@
|
|||||||
"envs": {
|
"envs": {
|
||||||
"$ref": "#/components/schemas/Envs"
|
"$ref": "#/components/schemas/Envs"
|
||||||
},
|
},
|
||||||
|
"headers": {
|
||||||
|
"type": "object",
|
||||||
|
"additionalProperties": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
"name": {
|
"name": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "The name used to identify this extension"
|
"description": "The name used to identify this extension"
|
||||||
|
|||||||
@@ -132,6 +132,9 @@ export type ExtensionConfig = {
|
|||||||
description?: string | null;
|
description?: string | null;
|
||||||
env_keys?: Array<string>;
|
env_keys?: Array<string>;
|
||||||
envs?: Envs;
|
envs?: Envs;
|
||||||
|
headers?: {
|
||||||
|
[key: string]: string;
|
||||||
|
};
|
||||||
/**
|
/**
|
||||||
* The name used to identify this extension
|
* The name used to identify this extension
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ export default function UserMessage({ message }: UserMessageProps) {
|
|||||||
<div ref={contentRef}>
|
<div ref={contentRef}>
|
||||||
<MarkdownContent
|
<MarkdownContent
|
||||||
content={displayText}
|
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>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user