summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src/components/message-part.tsx
diff options
context:
space:
mode:
authorAdam <[email protected]>2026-03-12 15:17:36 -0500
committerGitHub <[email protected]>2026-03-12 20:17:36 +0000
commit42a5af6c8f6998277cf69270ad12e2a64edac5d3 (patch)
treeeca5dff51dc694cce1e783425fc11b4bea1e6a12 /packages/ui/src/components/message-part.tsx
parentf0542fae7a917fabb9e943c3112a3d0b4b03302d (diff)
downloadopencode-42a5af6c8f6998277cf69270ad12e2a64edac5d3.tar.gz
opencode-42a5af6c8f6998277cf69270ad12e2a64edac5d3.zip
feat(app): follow-up behavior (#17233)
Diffstat (limited to 'packages/ui/src/components/message-part.tsx')
-rw-r--r--packages/ui/src/components/message-part.tsx11
1 files changed, 1 insertions, 10 deletions
diff --git a/packages/ui/src/components/message-part.tsx b/packages/ui/src/components/message-part.tsx
index 1a50ed48c..5a0f022ea 100644
--- a/packages/ui/src/components/message-part.tsx
+++ b/packages/ui/src/components/message-part.tsx
@@ -132,7 +132,6 @@ export interface MessageProps {
actions?: UserActions
showAssistantCopyPartID?: string | null
interrupted?: boolean
- queued?: boolean
showReasoningSummaries?: boolean
}
@@ -686,7 +685,6 @@ export function Message(props: MessageProps) {
parts={props.parts}
actions={props.actions}
interrupted={props.interrupted}
- queued={props.queued}
/>
)}
</Match>
@@ -883,7 +881,6 @@ export function UserMessageDisplay(props: {
parts: PartType[]
actions?: UserActions
interrupted?: boolean
- queued?: boolean
}) {
const data = useData()
const dialog = useDialog()
@@ -981,7 +978,6 @@ export function UserMessageDisplay(props: {
<div
data-slot="user-message-attachment"
data-type={file.mime.startsWith("image/") ? "image" : "file"}
- data-queued={props.queued ? "" : undefined}
onClick={() => {
if (file.mime.startsWith("image/") && file.url) {
openImagePreview(file.url, file.filename)
@@ -1010,14 +1006,9 @@ export function UserMessageDisplay(props: {
<Show when={text()}>
<>
<div data-slot="user-message-body">
- <div data-slot="user-message-text" data-queued={props.queued ? "" : undefined}>
+ <div data-slot="user-message-text">
<HighlightedText text={text()} references={inlineFiles()} agents={agents()} />
</div>
- <Show when={props.queued}>
- <div data-slot="user-message-queued-indicator">
- <TextShimmer text={i18n.t("ui.message.queued")} />
- </div>
- </Show>
</div>
<div data-slot="user-message-copy-wrapper" data-interrupted={props.interrupted ? "" : undefined}>
<Show when={metaHead() || metaTail()}>