θΏ™ζ˜―indexlocζδΎ›ηš„ζœεŠ‘οΌŒδΈθ¦θΎ“ε…₯任何密码
Skip to content

Fix text wrapping in directory tooltip #3967

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,9 @@ function DirectoryTooltips() {
if (!data) return null;
return (
<div className="text-xs">
<p className="text-white light:invert font-medium">{data.title}</p>
<p className="text-white light:invert font-medium break-all">
{data.title}
</p>
<div className="flex mt-1 gap-x-2">
<p className="">
Date: <b>{data.date}</b>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ function WorkspaceDocumentTooltips() {
if (!data) return null;
return (
<div className="text-xs">
<p className="text-white light:invert font-medium">
<p className="text-white light:invert font-medium break-all">
{data.title}
</p>
<div className="flex mt-1 gap-x-2">
Expand Down