Add: #92 アカウントのおすすめタグを真ん中のカラムからも確認できるように (#678)

* Add: #92 アカウントのおすすめタグを真ん中のカラムからも確認できるように

* ハッシュタグを隠さないよう修正
This commit is contained in:
KMY(雪あすか) 2024-03-27 18:32:32 +09:00 committed by GitHub
parent 227090147e
commit 808244f0cd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 45 additions and 8 deletions

View file

@ -18,6 +18,7 @@ class Header extends ImmutablePureComponent {
static propTypes = {
account: ImmutablePropTypes.record,
featuredTags: PropTypes.array,
onFollow: PropTypes.func.isRequired,
onBlock: PropTypes.func.isRequired,
onMention: PropTypes.func.isRequired,
@ -123,7 +124,7 @@ class Header extends ImmutablePureComponent {
};
render () {
const { account, hidden, hideTabs } = this.props;
const { account, featuredTags, hidden, hideTabs } = this.props;
if (account === null) {
return null;
@ -136,6 +137,7 @@ class Header extends ImmutablePureComponent {
<InnerHeader
account={account}
featuredTags={featuredTags}
onFollow={this.handleFollow}
onBlock={this.handleBlock}
onMention={this.handleMention}