mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 20:15:01 +00:00
Merge branch 'feature/frontend-a11y' of https://github.com/richardj/lemmy into richardj-feature/frontend-a11y
This commit is contained in:
commit
ac64786dc0
2 changed files with 3 additions and 3 deletions
2
ui/src/components/login.tsx
vendored
2
ui/src/components/login.tsx
vendored
|
@ -78,7 +78,7 @@ export class Login extends Component<any, State> {
|
|||
return (
|
||||
<div>
|
||||
<form onSubmit={linkEvent(this, this.handleLoginSubmit)}>
|
||||
<h2>{ i18n.t('login') }</h2>
|
||||
<h5>{ i18n.t('login') }</h5>
|
||||
<div class="form-group row">
|
||||
<label class="col-sm-2 col-form-label" for="login-email-or-username">
|
||||
{ i18n.t('email_or_username') }
|
||||
|
|
4
ui/src/components/post-listings.tsx
vendored
4
ui/src/components/post-listings.tsx
vendored
|
@ -31,9 +31,9 @@ export class PostListings extends Component<PostListingsProps, any> {
|
|||
))
|
||||
) : (
|
||||
<>
|
||||
<h2>
|
||||
<h5>
|
||||
{ i18n.t('no_posts') }
|
||||
</h2>
|
||||
</h5>
|
||||
{this.props.showCommunity !== undefined && (
|
||||
<div>
|
||||
<Link to="/communities">{ i18n.t('subscribe_to_communities') }</Link>
|
||||
|
|
Loading…
Reference in a new issue