Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions packages/app/src/components/prompt-input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1344,6 +1344,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
aria-multiline="true"
aria-label={placeholder()}
contenteditable="true"
dir="auto"
autocapitalize={store.mode === "normal" ? "sentences" : "off"}
autocorrect={store.mode === "normal" ? "on" : "off"}
spellcheck={store.mode === "normal"}
Expand Down
1 change: 1 addition & 0 deletions packages/ui/src/components/markdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,7 @@ export function Markdown(
return (
<div
data-component="markdown"
dir="auto"
classList={{
...local.classList,
[local.class ?? ""]: !!local.class,
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/components/message-part.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1100,7 +1100,7 @@ export function UserMessageDisplay(props: { message: UserMessage; parts: PartTyp
<Show when={text()}>
<>
<div data-slot="user-message-body">
<div data-slot="user-message-text">
<div data-slot="user-message-text" dir="auto">
<HighlightedText text={text()} references={inlineFiles()} agents={agents()} />
</div>
</div>
Expand Down
Loading