diff options
| author | David Hill <[email protected]> | 2026-01-24 22:42:52 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-01-24 22:42:52 +0000 |
| commit | 43906f56c8640b224c6266e970a23097619efb93 (patch) | |
| tree | 59aa20bfee3b20a1e13d8374b0741ca61d0a8cf7 | |
| parent | 241087d1dcb0e2406f9eed7dd34b1351d6b3ba4c (diff) | |
| download | opencode-43906f56c8640b224c6266e970a23097619efb93.tar.gz opencode-43906f56c8640b224c6266e970a23097619efb93.zip | |
fix(app): remove space between ellipsis and truncated text in comment card tooltip
| -rw-r--r-- | packages/app/src/components/prompt-input.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/app/src/components/prompt-input.tsx b/packages/app/src/components/prompt-input.tsx index d25a61c32..8fb6155fa 100644 --- a/packages/app/src/components/prompt-input.tsx +++ b/packages/app/src/components/prompt-input.tsx @@ -1717,9 +1717,9 @@ export const PromptInput: Component<PromptInputProps> = (props) => { <span class="flex max-w-[300px]"> <span class="text-text-invert-base truncate min-w-0" - style={{ direction: "rtl", "text-align": "left" }} + style={{ direction: "rtl", "text-align": "left", "unicode-bidi": "plaintext" }} > - <bdi>{getDirectory(item.path)}</bdi> + {getDirectory(item.path)} </span> <span class="shrink-0">{getFilename(item.path)}</span> </span> |
