mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
Improve roadmap (#405)
* Make it possible to embed the roadmap in iframe * Add board and status filters * Add query params to show/hide roadmap filters
This commit is contained in:
committed by
GitHub
parent
2e07f7b00d
commit
5780d8494e
@@ -11,9 +11,10 @@ interface Props {
|
||||
postStatus: IPostStatus;
|
||||
posts: Array<IPostJSON>;
|
||||
boards: Array<IBoard>;
|
||||
openPostsInNewTab: boolean;
|
||||
}
|
||||
|
||||
const PostListByPostStatus = ({ postStatus, posts, boards }: Props) => (
|
||||
const PostListByPostStatus = ({ postStatus, posts, boards, openPostsInNewTab }: Props) => (
|
||||
<div className="roadmapColumn">
|
||||
<div className="columnHeader"
|
||||
style={{backgroundColor: postStatus.color}}>
|
||||
@@ -23,6 +24,7 @@ const PostListByPostStatus = ({ postStatus, posts, boards }: Props) => (
|
||||
<PostList
|
||||
posts={posts}
|
||||
boards={boards}
|
||||
openPostsInNewTab={openPostsInNewTab}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user