fix(app): remove space between ellipsis and truncated text in comment card tooltip

This commit is contained in:
David Hill
2026-01-24 22:42:52 +00:00
parent 241087d1dc
commit 43906f56c8

View File

@@ -1717,9 +1717,9 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
<span class="flex max-w-[300px]"> <span class="flex max-w-[300px]">
<span <span
class="text-text-invert-base truncate min-w-0" 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>
<span class="shrink-0">{getFilename(item.path)}</span> <span class="shrink-0">{getFilename(item.path)}</span>
</span> </span>