Various improvements (#325)

* Fix missing translation in roadmap
* Fix resizing of textareas
* Increase line height for small muted texts
* Improve collapsed board list style
* Fix switch on top of header (z-index)
* Fix margin inconsistencies in site settings
* Add user count to site settings
This commit is contained in:
Riccardo Graziosi
2024-04-10 23:28:58 +02:00
committed by GitHub
parent f41f9dd082
commit a11157295d
16 changed files with 57 additions and 11 deletions

View File

@@ -1,4 +1,5 @@
import * as React from 'react';
import I18n from 'i18n-js';
import PostListItem from './PostListItem';
import { CenteredMutedText } from '../common/CustomTexts';
@@ -25,7 +26,7 @@ const PostList = ({ posts, boards }: Props) => (
/>
))
:
<CenteredMutedText>There are no posts that have this status.</CenteredMutedText>
<CenteredMutedText>{ I18n.t('board.posts_list.empty') }</CenteredMutedText>
}
</div>
);