diff --git a/package.json b/package.json index b0d555b5..554bd234 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lemmy-ui", - "version": "0.18.0-rc.1", + "version": "0.18.0-rc.2", "description": "An isomorphic UI for lemmy", "repository": "https://github.com/LemmyNet/lemmy-ui", "license": "AGPL-3.0", diff --git a/src/assets/css/main.css b/src/assets/css/main.css index da3f7ffc..f9aa1ffb 100644 --- a/src/assets/css/main.css +++ b/src/assets/css/main.css @@ -84,10 +84,6 @@ margin-top: -6.5px; } -.post-title { - line-height: 1; -} - .post-title a:visited { color: var(--gray) !important; } diff --git a/src/shared/components/post/post-listing.tsx b/src/shared/components/post/post-listing.tsx index 922fa61e..0a1798aa 100644 --- a/src/shared/components/post/post-listing.tsx +++ b/src/shared/components/post/post-listing.tsx @@ -367,10 +367,8 @@ export class PostListing extends Component { createdLine() { const post_view = this.postView; - const url = post_view.post.url; - const body = post_view.post.body; return ( - + ); }