mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 11:47:56 +01:00
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:
committed by
GitHub
parent
f41f9dd082
commit
a11157295d
@@ -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>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user