Add featured tags selector for WebUI (#19358)

* Add featured tags selector for WebUI

* Add title to tag count
This commit is contained in:
Takeshi Umeda
2022-10-16 15:43:59 +09:00
committed by GitHub
parent c618d3a0a5
commit 4c7b5fb6c1
9 changed files with 194 additions and 20 deletions

View File

@ -195,6 +195,7 @@ class SwitchingColumnsArea extends React.PureComponent {
<WrappedRoute path={['/publish', '/statuses/new']} component={Compose} content={children} />
<WrappedRoute path={['/@:acct', '/accounts/:id']} exact component={AccountTimeline} content={children} />
<WrappedRoute path='/@:acct/tagged/:tagged?' exact component={AccountTimeline} content={children} />
<WrappedRoute path={['/@:acct/with_replies', '/accounts/:id/with_replies']} component={AccountTimeline} content={children} componentParams={{ withReplies: true }} />
<WrappedRoute path={['/@:acct/followers', '/accounts/:id/followers']} component={Followers} content={children} />
<WrappedRoute path={['/@:acct/following', '/accounts/:id/following']} component={Following} content={children} />