|
|
@@ -40,7 +40,9 @@ const Widget = (prop: IWidgetAnthologyCard) => {
|
|
|
<>
|
|
|
<Card hoverable bordered={false} style={{ width: "100%" }}>
|
|
|
<Title level={4}>
|
|
|
- <Link to={`/anthology/${prop.data.id}`}>{prop.data.title}</Link>
|
|
|
+ <Link to={`/anthology/${prop.data.id}`}>
|
|
|
+ {prop.data.title}
|
|
|
+ </Link>
|
|
|
</Title>
|
|
|
<div>
|
|
|
<Text type="secondary">{prop.data.subTitle}</Text>
|
|
|
@@ -48,7 +50,9 @@ const Widget = (prop: IWidgetAnthologyCard) => {
|
|
|
<div>
|
|
|
<Text>{prop.data.summary}</Text>
|
|
|
</div>
|
|
|
- <StudioName data={prop.data.studio} />
|
|
|
+ <Link to={`/blog/${prop.data.studio.studioName}/anthology`}>
|
|
|
+ <StudioName data={prop.data.studio} />
|
|
|
+ </Link>
|
|
|
<Row>
|
|
|
<Col flex={"100px"}>Content</Col>
|
|
|
<Col flex={"auto"}>{articleList}</Col>
|