Skip to content
Open
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
User can disable drafts saving on the Settings / Privacy page. In this case,
drafts will still work, but will not be saved to persistent storage and will
be lost on tab close/reload.
### Changed
- RTL texts are now right-aligned in the post bodies and in the user
descriptions.

## [1.127.3] - 2024-02-14
### Fixed
Expand Down
4 changes: 4 additions & 0 deletions src/components/user-profile-head.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ $actions-padding: 0.75em;
&:empty {
display: none;
}

& :global(.Linkify) {
display: block;
}
}

.stats {
Expand Down
4 changes: 4 additions & 0 deletions styles/shared/post.scss
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@ $post-line-height: rem(20px);
}
}

.Linkify {
display: block;
}

a {
color: #000088;
}
Expand Down