Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ui/desktop/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 3 additions & 0 deletions ui/desktop/src/api/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
1 change: 1 addition & 0 deletions ui/desktop/src/components/MarkdownContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ export default function MarkdownContent({ content, className = '' }: MarkdownCon
prose-ol:my-2
prose-ul:mt-0 prose-ul:mb-3
prose-li:m-0
${className.includes('user-message') ? 'prose-headings:text-white prose-strong:text-white prose-em:text-white' : ''}

${className}`}
components={{
Expand Down
Loading