mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-22 20:31:13 +00:00
fix: Break text on post titles so long words don't overflow
This commit is contained in:
parent
8e20d16f71
commit
8a163fedde
1 changed files with 2 additions and 2 deletions
|
@ -477,8 +477,8 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
|||
|
||||
return (
|
||||
<>
|
||||
<div className="post-title overflow-hidden">
|
||||
<h5 className="d-inline">
|
||||
<div className="post-title">
|
||||
<h5 className="d-inline text-break">
|
||||
{url && this.props.showBody ? (
|
||||
<a
|
||||
className={
|
||||
|
|
Loading…
Reference in a new issue