-
Notifications
You must be signed in to change notification settings - Fork 3.5k
[WEB-5606] fix: work item preview word break #8537
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
base: preview
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -48,7 +48,7 @@ export const WorkItemPreviewCard = observer(function WorkItemPreviewCard(props: | |||||
| </div> | ||||||
| </div> | ||||||
| <div> | ||||||
| <h6 className="text-13">{workItem.name}</h6> | ||||||
| <h6 className="text-13 wrap-break-word">{workItem.name}</h6> | ||||||
|
||||||
| <h6 className="text-13 wrap-break-word">{workItem.name}</h6> | |
| <h6 className="text-13 break-words">{workItem.name}</h6> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: makeplane/plane
Length of output: 511
🏁 Script executed:
Repository: makeplane/plane
Length of output: 4614
Replace
wrap-break-wordwith the standard Tailwind classbreak-words.wrap-break-wordis not a valid Tailwind CSS class and is not defined as a custom utility in this project. The codebase uses standard Tailwind word-breaking classes elsewhere (break-words,break-all). Change line 51 to usebreak-wordsinstead:Diff
📝 Committable suggestion
🤖 Prompt for AI Agents