summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Hill <[email protected]>2026-01-23 20:37:19 +0000
committerDavid Hill <[email protected]>2026-01-24 06:18:55 +0000
commit1bf4caa0c1c417692abafdacc11c11f312a027b2 (patch)
treed948c13f2d94a347bdddce30cfd64412f02495cf
parent35a3c982217eba67b50a7cb96ce172e59c514201 (diff)
downloadopencode-1bf4caa0c1c417692abafdacc11c11f312a027b2.tar.gz
opencode-1bf4caa0c1c417692abafdacc11c11f312a027b2.zip
fix(app): indent comment text to align with filename in context card
-rw-r--r--packages/app/src/components/prompt-input.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/app/src/components/prompt-input.tsx b/packages/app/src/components/prompt-input.tsx
index 9000a1766..8641cdd27 100644
--- a/packages/app/src/components/prompt-input.tsx
+++ b/packages/app/src/components/prompt-input.tsx
@@ -1720,7 +1720,7 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
/>
</div>
<Show when={item.comment}>
- {(comment) => <div class="text-11-regular text-text-strong">{comment()}</div>}
+ {(comment) => <div class="text-11-regular text-text-strong ml-5">{comment()}</div>}
</Show>
</div>
)